14 lines
289 B
Java
Raw Normal View History

2012-03-28 01:13:14 +02:00
public class pr18278 {
public pr18278() {}
public static void main(String[] args) {
System.loadLibrary("pr18278");
String bob = "Bob";
Object o = weakRef("Bob");
System.out.println(o);
System.out.println(bob == o);
}
static native Object weakRef(Object o);
}