aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t0904.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2014-03-16 21:42:10 +0100
committerTobias Schlatter <tobias@meisch.ch>2014-03-21 11:28:30 +0100
commit90f430bfb9178e49dc112bacf5b250d0780dcd1e (patch)
tree49fef9cac0869ae34f33c964c38089ddbb9d1689 /tests/pos/t0904.scala
parent7bf837c79315e5db7e049f3ffeb6c6842d18880c (diff)
downloaddotty-90f430bfb9178e49dc112bacf5b250d0780dcd1e.tar.gz
dotty-90f430bfb9178e49dc112bacf5b250d0780dcd1e.tar.bz2
dotty-90f430bfb9178e49dc112bacf5b250d0780dcd1e.zip
More tests
which all pass.
Diffstat (limited to 'tests/pos/t0904.scala')
-rw-r--r--tests/pos/t0904.scala17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/pos/t0904.scala b/tests/pos/t0904.scala
new file mode 100644
index 000000000..28ad30fc2
--- /dev/null
+++ b/tests/pos/t0904.scala
@@ -0,0 +1,17 @@
+trait A {
+ def apply(x: Int): Int
+ def update(x: Int, y: Int): Unit
+}
+
+trait B extends A
+
+abstract class Foo {
+ val a: A = null
+ val b: B = null
+
+ a(0) = 1
+ b(0) = 1
+
+ a(0) += 1
+ b(0) += 1 // this one does not type check.
+}