9 lines
165 B
Plaintext
Vendored
9 lines
165 B
Plaintext
Vendored
// INTENTION_TEXT: "Add '@Throws' annotation"
|
|
// WITH_RUNTIME
|
|
|
|
class FooException : Exception()
|
|
|
|
@Throws(FooException::class)
|
|
fun test() {
|
|
throw FooException()
|
|
} |