Exposed visibility deprecation warnings made errors + relevant test fixes
This commit is contained in:
+1
-1
@@ -1,4 +1,4 @@
|
||||
// "Create parameter 's'" "true"
|
||||
// ERROR: Unresolved reference: s
|
||||
|
||||
fun foo(s: String?) = C(s)
|
||||
internal fun foo(s: String?) = C(s)
|
||||
Vendored
+1
-1
@@ -1,4 +1,4 @@
|
||||
// "Create parameter 's'" "true"
|
||||
// ERROR: Unresolved reference: s
|
||||
|
||||
fun foo() = C(<caret>s)
|
||||
internal fun foo() = C(<caret>s)
|
||||
Vendored
+1
-1
@@ -3,6 +3,6 @@
|
||||
// ACTION: Create extension property 'foo'
|
||||
// ERROR: Unresolved reference: foo
|
||||
|
||||
fun test(a: A): String? {
|
||||
internal fun test(a: A): String? {
|
||||
return a.<caret>foo
|
||||
}
|
||||
Reference in New Issue
Block a user