
kevin williams
Pro Student 215 PointsStill receiving "class, interface, or enum expected" error
treehouse:~/workspace$ javac Introductions.java
Picked up JAVA_TOOL_OPTIONS: -Xmx128m
Picked up _JAVA_OPTIONS: -Xmx128m
Introductions.java:1: error: class, interface, or enum
expected
bimport java.io.Console;
^
1 error
Everytime I use java compiler, I receive this error. No idea how to fix.
1 Answer

KRIS NIKOLAISEN
Pro Student 51,941 PointsI was able to recreate the error by changing import to bimport in Introductions.java. If you have bimport change it back to import.
KRIS NIKOLAISEN
Pro Student 51,941 PointsKRIS NIKOLAISEN
Pro Student 51,941 PointsCan you post your code?