summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/files/neg/bug284.check8
-rw-r--r--test/files/neg/bug284.scala6
-rw-r--r--test/files/pos/bug284.scala5
3 files changed, 19 insertions, 0 deletions
diff --git a/test/files/neg/bug284.check b/test/files/neg/bug284.check
new file mode 100644
index 0000000000..7e54672365
--- /dev/null
+++ b/test/files/neg/bug284.check
@@ -0,0 +1,8 @@
+bug284.scala:2: warning: Detected apparent refinement of Unit; are you missing an '=' sign?
+ def f1(a: T): Unit { }
+ ^
+bug284.scala:6: error: eof expected but '}' found.
+}
+^
+one warning found
+one error found
diff --git a/test/files/neg/bug284.scala b/test/files/neg/bug284.scala
new file mode 100644
index 0000000000..c1817466b5
--- /dev/null
+++ b/test/files/neg/bug284.scala
@@ -0,0 +1,6 @@
+trait B[T] {
+ def f1(a: T): Unit { }
+ def f2(a: T): Unit
+ def f3(a: T) { }
+ }
+} \ No newline at end of file
diff --git a/test/files/pos/bug284.scala b/test/files/pos/bug284.scala
new file mode 100644
index 0000000000..b5879fb3fe
--- /dev/null
+++ b/test/files/pos/bug284.scala
@@ -0,0 +1,5 @@
+trait B[T] {
+ def f1(a: T): Unit { }
+ def f2(a: T): Unit
+ def f3(a: T) { }
+} \ No newline at end of file