Files
kotlin-fork/idea/testData/multiModuleQuickFix/addThrowAnnotation/common/common_dep(stdlib)/common.kt.after
T
Dmitry Gridin 499a02ebe3 AddThrowsAnnotationIntention: improve for mpp
#KT-38391 Fixed
2020-05-20 02:19:10 +00:00

8 lines
140 B
Plaintext
Vendored

// "Add '@Throws' annotation" "true"
class FooException : Exception()
@Throws(FooException::class)
fun test() {
throw FooException()
}