blob: efb2b0ef6a1aa55c450da050b4d009f754850cfa [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);
}
}