From 09052a6a1a01986a2f8bd721ece11c43bf766ab5 Mon Sep 17 00:00:00 2001 From: Martin Odersky Date: Mon, 10 Jan 2011 14:33:50 +0000 Subject: Added test file. --- test/files/pos/t4114.scala | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 test/files/pos/t4114.scala (limited to 'test/files/pos') diff --git a/test/files/pos/t4114.scala b/test/files/pos/t4114.scala new file mode 100644 index 0000000000..25eb2232c9 --- /dev/null +++ b/test/files/pos/t4114.scala @@ -0,0 +1,8 @@ +abstract class A { + private def foo = List(1, 2) +} +trait B extends A { + private def foo = List("a", "b") + // However it compiles correctly if the type is given: + // private def foo: List[String] = List("a", "b") +} -- cgit v1.2.3