caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
* unused variable error with objects
@ 2008-03-20 13:40 Ralph Douglass
  2008-03-20 13:57 ` [Caml-list] " Julien Signoles
  2008-03-20 13:58 ` Jeremy Yallop
  0 siblings, 2 replies; 4+ messages in thread
From: Ralph Douglass @ 2008-03-20 13:40 UTC (permalink / raw)
  To: Caml List

[-- Attachment #1: Type: text/plain, Size: 1080 bytes --]

I'm a little confused by some code that I'm trying to compile some code with
"-w Ae -warn-error Ae".

Below is an examle:

class foo = object
  method bar ~(snoo : string) = ()
end;;

let biff = new foo;;
biff#bar ~snoo:"hi";;

When I compile it (ocamlc -c -w Ae -warn-error Ae foo.ml), as expected, I
get:
File "foo.ml", line 2, characters 15-19:
Warning Z: unused variable snoo.

With labeled functions, I usually do something like ~snoo:_, but it does not
work in this exampled with methods:
---
class foo = object
  method bar ~(snoo : string):_ = ()
end;;

let biff = new foo;;
biff#bar ~snoo:"hi";;
--
ocamlc -c -w Ae -warn-error Ae foo.ml
File "foo.ml", line 2, characters 15-19:
Warning Z: unused variable snoo.

On a whim, I did the following, which surprisingly worked:

class foo = object
  method bar ~(_snoo : string) = ()
end;;

let biff = new foo;;
biff#bar ~_snoo:"hi";;

And that compiles, which confused me.  But I have to put the underbar into
the method call, which seems wrong.
Is there a solution to this?

I'm running 3.10.1, from godi.

Thanks!

-- 
Ralph

[-- Attachment #2: Type: text/html, Size: 1436 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2008-03-20 15:42 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-03-20 13:40 unused variable error with objects Ralph Douglass
2008-03-20 13:57 ` [Caml-list] " Julien Signoles
2008-03-20 13:58 ` Jeremy Yallop
2008-03-20 15:42   ` Ralph Douglass

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).