summaryrefslogtreecommitdiff
path: root/test/files/pos/t5809.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t5809.scala')
-rw-r--r--test/files/pos/t5809.scala5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/files/pos/t5809.scala b/test/files/pos/t5809.scala
index 133e13c4ed..6101f546b3 100644
--- a/test/files/pos/t5809.scala
+++ b/test/files/pos/t5809.scala
@@ -1,5 +1,6 @@
package object foo {
- implicit class PimpedInt(foo: Int) {
+ implicit class EnrichedInt(foo: Int) {
def bar = ???
+ def bippy = foo
}
-} \ No newline at end of file
+}