aoqi@0: /* @test /nodynamiccopyright/ aoqi@0: * @bug 6891079 aoqi@0: * @summary Compiler allows invalid binary literals 0b and oBL aoqi@0: * @compile/fail/ref=T6891079.out -XDrawDiagnostics T6891079.java aoqi@0: */ aoqi@0: aoqi@0: class Test { aoqi@0: int bi = 0B; aoqi@0: long bl = 0BL; aoqi@0: int xi = 0X; aoqi@0: long xl = 0XL; aoqi@0: }