summaryrefslogtreecommitdiff
path: root/test/files/pos/t7233.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t7233.scala')
-rw-r--r--test/files/pos/t7233.scala14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/files/pos/t7233.scala b/test/files/pos/t7233.scala
new file mode 100644
index 0000000000..ae15c08c35
--- /dev/null
+++ b/test/files/pos/t7233.scala
@@ -0,0 +1,14 @@
+object Foo {
+ def bar(i: Int) = i
+
+ def ol(i: Int) = i
+ def ol(i: String) = i
+}
+object Test {
+ import Foo.{ bar => quux, toString => bar, ol => olRenamed}
+
+ val f1 = quux _
+ val f1Typed: (Int => Int) = f1
+
+ val f2: String => String = olRenamed _
+}