summaryrefslogtreecommitdiff
path: root/test/disabled/presentation/ide-t1000620/src/b/B.scala
diff options
context:
space:
mode:
authorskyluc <skyluc@epfl.ch>2011-09-26 08:59:21 +0000
committerskyluc <skyluc@epfl.ch>2011-09-26 08:59:21 +0000
commit567e9f2980999b8c3c0931f44e0b6ae10331a0d9 (patch)
tree0964ddff0913a7775562cc376f14e40c9fd9767d /test/disabled/presentation/ide-t1000620/src/b/B.scala
parent87972677b8076bcd4e11786b55a530501e3180e8 (diff)
downloadscala-567e9f2980999b8c3c0931f44e0b6ae10331a0d9.tar.gz
scala-567e9f2980999b8c3c0931f44e0b6ae10331a0d9.tar.bz2
scala-567e9f2980999b8c3c0931f44e0b6ae10331a0d9.zip
Added test for the completion problem in the pr...
Added test for the completion problem in the presentation compiler reported in the scala-ide ticket 1000620.
Diffstat (limited to 'test/disabled/presentation/ide-t1000620/src/b/B.scala')
-rw-r--r--test/disabled/presentation/ide-t1000620/src/b/B.scala8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/disabled/presentation/ide-t1000620/src/b/B.scala b/test/disabled/presentation/ide-t1000620/src/b/B.scala
new file mode 100644
index 0000000000..b579f97d6f
--- /dev/null
+++ b/test/disabled/presentation/ide-t1000620/src/b/B.scala
@@ -0,0 +1,8 @@
+package b
+import a.A
+class B {
+ def main(args: Array[String]) {
+ val a = new A()
+ a./*!*/
+ }
+}