fork download
  1. class Teste {
  2. public static void main(String[] args) {
  3. String x = "a" * true;
  4. }
  5. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Main.java:3: error: bad operand types for binary operator '*'
        String x = "a" * true;
                       ^
  first type:  String
  second type: boolean
1 error
stdout
Standard output is empty