summaryrefslogtreecommitdiff
path: root/test/files/presentation/ide-bug-1000531
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/presentation/ide-bug-1000531')
-rw-r--r--test/files/presentation/ide-bug-1000531/Runner.scala3
-rw-r--r--test/files/presentation/ide-bug-1000531/src/CrashOnLoad.scala7
2 files changed, 10 insertions, 0 deletions
diff --git a/test/files/presentation/ide-bug-1000531/Runner.scala b/test/files/presentation/ide-bug-1000531/Runner.scala
new file mode 100644
index 0000000000..1ef3cf9025
--- /dev/null
+++ b/test/files/presentation/ide-bug-1000531/Runner.scala
@@ -0,0 +1,3 @@
+import scala.tools.nsc.interactive.tests._
+
+object Test extends InteractiveTest \ No newline at end of file
diff --git a/test/files/presentation/ide-bug-1000531/src/CrashOnLoad.scala b/test/files/presentation/ide-bug-1000531/src/CrashOnLoad.scala
new file mode 100644
index 0000000000..878bbfa19e
--- /dev/null
+++ b/test/files/presentation/ide-bug-1000531/src/CrashOnLoad.scala
@@ -0,0 +1,7 @@
+/** When this files is opened within the IDE, a typing error is reported. */
+class A[B] extends java.lang.Iterable[B] {
+ import scala.collection.JavaConversions._
+ def iterator = Iterator.empty
+
+ iterator. /*!*/
+} \ No newline at end of file