blob: eb9de8daa07a17df06c26ab121bedc8d82e0db30 [file] [log] [blame]
package pkg;
class TestCodeConstructs {
private int count = 0;
void expressions() {
(new String()).hashCode();
}
Integer fieldIncrement() {
return new Integer(this.count++);
}
}