aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t3808.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pos/t3808.scala')
-rw-r--r--tests/pos/t3808.scala11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/pos/t3808.scala b/tests/pos/t3808.scala
new file mode 100644
index 000000000..ec95fed4d
--- /dev/null
+++ b/tests/pos/t3808.scala
@@ -0,0 +1,11 @@
+object Test {
+ def meh: Unit = {
+ trait TC[I]
+ implicit val tci: TC[Int] = new TC[Int]{}
+
+ def baz[J : TC] : String = "meh"
+
+ baz
+ // () // commenting or uncommenting this line should not affect compilation (visibly)
+ }
+}