https://kotlinlang.org logo
c

cedric

10/07/2015, 6:15 PM
I can’t seem to define
com.beust.kobalt.MainKt
in a launch config, IntelliJ tells me this class doesn’t have a main. But it does:
Copy code
$ javap -cp /Users/beust/.kobalt/repository/com/beust/kobalt/0.153/kobalt-0.153.jar  com.beust.kobalt.MainKt                
Compiled from "Main.kt"
public final class com.beust.kobalt.MainKt {
  public static final void main(java.lang.String[]);
Any idea why IntelliJ can find the class but not its main?