summaryrefslogtreecommitdiff
path: root/test/files/neg/t7605-deprecation.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/t7605-deprecation.scala')
-rw-r--r--test/files/neg/t7605-deprecation.scala7
1 files changed, 5 insertions, 2 deletions
diff --git a/test/files/neg/t7605-deprecation.scala b/test/files/neg/t7605-deprecation.scala
index 4a7dcd26d6..2b3362f94a 100644
--- a/test/files/neg/t7605-deprecation.scala
+++ b/test/files/neg/t7605-deprecation.scala
@@ -1,5 +1,8 @@
abstract class Foo {
- def this(i: Int) { this() }
def bar {}
def baz
-} \ No newline at end of file
+ def boo(i: Int, l: Long)
+ def boz(i: Int, l: Long) {}
+ def this(i: Int) { this() } // Don't complain here!
+ def foz: Unit // Don't complain here!
+}