2ecba6ac39
This directive anyway does not make test run twice with OI, and with NI It only once run the test with specific settings (// LANGUAGE) and ignores irrelevant (OI or NI tags)
23 lines
350 B
Kotlin
Vendored
23 lines
350 B
Kotlin
Vendored
// !DIAGNOSTICS: -ASSIGNED_BUT_NEVER_ACCESSED_VARIABLE -UNUSED_VALUE -UNUSED_PARAMETER
|
|
|
|
package p
|
|
|
|
private fun foo(a: Int) = run {
|
|
class A {
|
|
inner class B
|
|
}
|
|
A().B()
|
|
}
|
|
|
|
private fun foo() = run {
|
|
class A {
|
|
inner class B
|
|
}
|
|
A().B()
|
|
}
|
|
|
|
fun test() {
|
|
var x = foo(1)
|
|
x = <!ASSIGNMENT_TYPE_MISMATCH!>foo()<!>
|
|
}
|