blob: ecf3086687ab45442ed2160a8b16b18cadd6b436 [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" {}