summaryrefslogtreecommitdiff
path: root/test/files/neg/t9847.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/t9847.scala')
-rw-r--r--test/files/neg/t9847.scala23
1 files changed, 23 insertions, 0 deletions
diff --git a/test/files/neg/t9847.scala b/test/files/neg/t9847.scala
new file mode 100644
index 0000000000..51c16d815f
--- /dev/null
+++ b/test/files/neg/t9847.scala
@@ -0,0 +1,23 @@
+
+trait T {
+
+ def f(): Unit = 42
+ def g = (42: Unit)
+ def h = {
+ 1
+ + 1
+ }
+ def hh(): Unit = {
+ 1
+ + 1
+ }
+ def i(): Unit = {
+ val x = 1
+ x + 1
+ }
+ def x = 42
+ def j(): Unit = x + 1
+
+ class C { 42 }
+ class D { 42 ; 17 }
+}