aoqi@0: /* aoqi@0: * @test /nodynamiccopyright/ aoqi@0: * @bug 7086595 aoqi@0: * @summary Error message bug: name of initializer is 'null' aoqi@0: * @compile/fail/ref=T7086595.out -XDrawDiagnostics T7086595.java aoqi@0: */ aoqi@0: aoqi@0: class T7086595 { aoqi@0: aoqi@0: String s = "x"; aoqi@0: String s = nonExistent; aoqi@0: aoqi@0: int foo() { aoqi@0: String s = "x"; aoqi@0: String s = nonExistent; aoqi@0: } aoqi@0: aoqi@0: static int bar() { aoqi@0: String s = "x"; aoqi@0: String s = nonExistent; aoqi@0: } aoqi@0: aoqi@0: { aoqi@0: String s = "x"; aoqi@0: String s = nonExistent; aoqi@0: } aoqi@0: aoqi@0: static { aoqi@0: String s = "x"; aoqi@0: String s = nonExistent; aoqi@0: } aoqi@0: }