summaryrefslogtreecommitdiff
path: root/test/files/pos/t10154.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t10154.scala')
-rw-r--r--test/files/pos/t10154.scala11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/files/pos/t10154.scala b/test/files/pos/t10154.scala
new file mode 100644
index 0000000000..51616b71d6
--- /dev/null
+++ b/test/files/pos/t10154.scala
@@ -0,0 +1,11 @@
+trait Bar2[T]
+
+object Test2 {
+ def wrap {
+ object Foo {
+ implicit def fooBar: Bar2[Foo.type] = ???
+ }
+
+ implicitly[Bar2[Foo.type]]
+ }
+}