I have a java test project which has two binary fields.when I want to compile the project in IntelliJ,it complains that I should use -source 7 instead of -source 1.6 while compiling.my JDK is the latest.I don't know how to fix this.
sample code:
public class BitWiseTest { static int val1 = 0b01110;//compile-time error static int val2 = 0b11011;//compile-time error public static void main() { System.out.println(val1 & val2); } }