8 lines
143 B
Kotlin
Vendored
8 lines
143 B
Kotlin
Vendored
// INTENTION_TEXT: "Add '@Throws' annotation"
|
|
// WITH_RUNTIME
|
|
|
|
class FooException : Exception()
|
|
|
|
fun test() {
|
|
<caret>throw FooException()
|
|
} |