aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t3999/a_1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t3999/a_1.scala')
-rw-r--r--tests/untried/pos/t3999/a_1.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/untried/pos/t3999/a_1.scala b/tests/untried/pos/t3999/a_1.scala
index 54c1b86ce..be9cc371e 100644
--- a/tests/untried/pos/t3999/a_1.scala
+++ b/tests/untried/pos/t3999/a_1.scala
@@ -4,6 +4,6 @@ class Outside
package object bar {
class Val(b: Boolean)
- implicit def boolean2Val(b: Boolean) = new Val(b)
- implicit def boolean2Outside(b: Boolean) = new Outside
+ implicit def boolean2Val(b: Boolean): foo.bar.package.Val = new Val(b)
+ implicit def boolean2Outside(b: Boolean): foo.Outside = new Outside
}