On 11/06/2013 05:42 AM, Andrew Haley wrote:
On 11/04/2013 05:21 PM, Jason Merrill wrote:
Surely it should be valid to allocate a Java boolean type. Andrew,
how should that work?
It's not allowed. All objects that are allocated by new must be of
class type (i.e. instances of a subclass of ja
On 11/04/2013 05:21 PM, Jason Merrill wrote:
> Surely it should be valid to allocate a Java boolean type. Andrew,
> how should that work?
It's not allowed. All objects that are allocated by new must be of
class type (i.e. instances of a subclass of java.lang.Object), but
boolean is a primitive
On 11/04/2013 06:21 PM, Jason Merrill wrote:
Surely it should be valid to allocate a Java boolean type. Andrew,
how should that work?
Thanks. The problem we are facing (assuming we want to resolve this old
isue) is that something seems seriously broken for the builtin Java
types as declared in
Surely it should be valid to allocate a Java boolean type. Andrew, how
should that work?
Jason