ab5a691612
#KT-6687 Fixed
17 lines
258 B
Kotlin
17 lines
258 B
Kotlin
// "Create function 'foo'" "true"
|
|
|
|
val baz = 1
|
|
|
|
fun test() {
|
|
val a: Int = foo()
|
|
}
|
|
|
|
fun foo(): Int {
|
|
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
|
|
}
|
|
|
|
fun bar() {
|
|
|
|
}
|
|
|