blob: 85e176d39417ac45115b7666dee64ae24ea80c81 [file] [log] [blame]
package test0545;
public class First {
private static class Test {
// default constructor
Test(float f) {
}
}
First() {
final Test t = new Test(0.0f);
}
}