summaryrefslogtreecommitdiff
path: root/plugins/kotlin/idea/tests/testData/quickfix/autoImports/invisible/property.after.kt
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/kotlin/idea/tests/testData/quickfix/autoImports/invisible/property.after.kt')
-rw-r--r--plugins/kotlin/idea/tests/testData/quickfix/autoImports/invisible/property.after.kt10
1 files changed, 10 insertions, 0 deletions
diff --git a/plugins/kotlin/idea/tests/testData/quickfix/autoImports/invisible/property.after.kt b/plugins/kotlin/idea/tests/testData/quickfix/autoImports/invisible/property.after.kt
new file mode 100644
index 000000000000..d63287f4f7c1
--- /dev/null
+++ b/plugins/kotlin/idea/tests/testData/quickfix/autoImports/invisible/property.after.kt
@@ -0,0 +1,10 @@
+// "Import" "true"
+// ERROR: Cannot access 'f': it is private in file
+
+package my.pack
+
+import simple.f
+
+fun main() {
+ <caret>f
+}