blob: 26ca426f6d3371b422ee1347f5ecbcd735787987 [file] [log] [blame]
40 columns |
>>> Without strings.
class Foo {
Foo() native ;
int bar() native ;
}
<<<
class Foo {
Foo() native;
int bar() native;
}
>>> 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" {}