when I compile from IntelliJ with 1.1 RC, I get th...
# intellij
p
when I compile from IntelliJ with 1.1 RC, I get the warning
Calls to static methods in Java interfaces are deprecated in JVM target 1.6. Recompile with '-jvm-target 1.8'
despite having using the Gradle plugin to import the project (I did refresh many times by now), and having in my project:
Copy code
compileKotlin {
        kotlinOptions.jvmTarget = '1.8'
    }