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