summaryrefslogtreecommitdiff
path: root/test/files/pos/t9074b.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t9074b.scala')
-rw-r--r--test/files/pos/t9074b.scala15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/files/pos/t9074b.scala b/test/files/pos/t9074b.scala
new file mode 100644
index 0000000000..dadcebf399
--- /dev/null
+++ b/test/files/pos/t9074b.scala
@@ -0,0 +1,15 @@
+trait Echo [T] {
+ def echo(t: T): Unit
+}
+
+trait IntEcho extends Echo[Int] {
+ def echo(t: Int) = println(t)
+}
+
+object echo extends IntEcho
+package object echo1 extends IntEcho
+
+object App extends App {
+ echo.echo(1)
+ echo1.echo(1)
+}