blob: 27dc933f286c648a01405407aa36b017fe2aa359 [file] [log] [blame]
40 columns |
>>> members without strings
class Foo {
Foo() native ;
int bar() native ;
}
<<<
class Foo {
Foo() native;
int bar() native;
}
>>> members with strings
class Foo {
Foo() native "Foo" ;
int bar() native "bar" ;
}
<<<
class Foo {
Foo() native "Foo";
int bar() native "bar";
}
>>> class
class Foo native "Foo" { }
<<<
class Foo native "Foo" {}