blob: 115985534f4b1597e1c47c5f9867a8b6b7eb649d [file] [edit]
40 columns |
>>> Without strings.
class Foo {
Foo() native ;
int bar() native ;
}
<<< 3.7
class Foo {
Foo() native;
int bar() native;
}
>>> With strings.
class Foo {
Foo() native "Foo" ;
int bar() native "bar" ;
}
<<< 3.7
class Foo {
Foo() native "Foo";
int bar() native "bar";
}
>>> class
class Foo native "Foo" { }
<<< 3.7
class Foo native "Foo" {}