jjg@409: /* jjg@409: * @test /nodynamiccopyright/ jjg@409: * @bug 6860965 jjg@409: * @summary Project Coin: binary literals jjg@757: * @compile/fail/ref=BadBinaryLiterals.6.out -XDrawDiagnostics -source 6 -Xlint:-options BadBinaryLiterals.java jjg@409: * @compile/fail/ref=BadBinaryLiterals.7.out -XDrawDiagnostics BadBinaryLiterals.java jjg@409: */ jjg@409: jjg@409: public class BadBinaryLiterals { jjg@409: int valid = 0b0; // valid literal, illegal in source 6 jjg@409: int baddigit = 0b012; // bad digit jjg@409: //aaaabbbbccccddddeeeeffffgggghhhh jjg@409: int overflow1 = 0b111111111111111111111111111111111; // too long for int jjg@409: //aaaabbbbccccddddeeeeffffgggghhhhiiiijjjjkkkkllllmmmmnnnnoooopppp jjg@409: int overflow2 = 0b11111111111111111111111111111111111111111111111111111111111111111L; // too long for long jjg@409: float badfloat1 = 0b01.01; // no binary floats jjg@409: float badfloat2 = 0b01e01; // no binary floats jjg@409: }