mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
Intrinsics.checkParameterIsNotNull() gets its caller's class and method names from the stack trace to render them in an exception message. Fix codegen tests because now it's now allowed to pass null to non-null argument in tests
5 lines
51 B
Kotlin
Vendored
5 lines
51 B
Kotlin
Vendored
class A {
|
|
private fun foo(s: String) {
|
|
}
|
|
}
|