aboutsummaryrefslogtreecommitdiff
path: root/tests/new/t2444.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/new/t2444.scala')
-rw-r--r--tests/new/t2444.scala15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/new/t2444.scala b/tests/new/t2444.scala
deleted file mode 100644
index fac1e95d0..000000000
--- a/tests/new/t2444.scala
+++ /dev/null
@@ -1,15 +0,0 @@
-object Test {
-
- trait Foo
-
- class Bar {
- object baz extends Foo
- }
-
- def frob[P1, P2<:Foo](f:P1 => P2) = ()
-
- def main(args:Array[String]) : Unit = {
- frob((p:Bar) => p.baz)
- }
-
-}