summaryrefslogtreecommitdiff
path: root/test/files/pos/bug284.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2009-02-18 22:03:28 +0000
committerPaul Phillips <paulp@improving.org>2009-02-18 22:03:28 +0000
commita626f6253829d0c8512551e8ae1290511cb077f1 (patch)
tree51e9e0e20d1279bbde2a5841ccdf3d9a6f016218 /test/files/pos/bug284.scala
parent36b0e8178f74a2986bce5c9027b9a2b22a4e7527 (diff)
downloadscala-a626f6253829d0c8512551e8ae1290511cb077f1.tar.gz
scala-a626f6253829d0c8512551e8ae1290511cb077f1.tar.bz2
scala-a626f6253829d0c8512551e8ae1290511cb077f1.zip
Issue warning when attempting to refine Unit, p...
Issue warning when attempting to refine Unit, plus test case; bug #284.
Diffstat (limited to 'test/files/pos/bug284.scala')
-rw-r--r--test/files/pos/bug284.scala5
1 files changed, 5 insertions, 0 deletions
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