summaryrefslogtreecommitdiff
path: root/test/files/pos/testcast.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/testcast.scala')
-rw-r--r--test/files/pos/testcast.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/testcast.scala b/test/files/pos/testcast.scala
index 15aa01ba72..631b2c922b 100644
--- a/test/files/pos/testcast.scala
+++ b/test/files/pos/testcast.scala
@@ -15,7 +15,7 @@ class B1 {
}
object C {
- def view(x: A): B1 = null;
+ implicit def view(x: A): B1 = null;
}
object Test {
import C.view;