KT-7291 Copy/paste of java declaration with preceding comment omitted does not convert it to Kotlin propertly

#KT-7291 Fixed
This commit is contained in:
Valentin Kipyatkov
2015-04-09 15:21:56 +03:00
parent bfadd489a3
commit 498f24b98b
18 changed files with 304 additions and 21 deletions
@@ -0,0 +1,9 @@
package to
public object JavaClass {
public fun main(args: Array<String>) {
println("Hello, world!")
}
}
fun main(args: Array<String>) = JavaClass.main(args)