// In below example, why does "s" contain "getClass" method,
// while "c" does not?
method main()
{
val s = "string";
val c = 'c';
printLine(s.getClass());
printLine(c.getClass());
}
Original issue reported on code.google.com by akefi...@gmail.com on 4 Dec 2012 at 12:08
Original issue reported on code.google.com by
akefi...@gmail.com
on 4 Dec 2012 at 12:08