aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorodersky <odersky@gmail.com>2017-04-10 10:30:18 +0200
committerGitHub <noreply@github.com>2017-04-10 10:30:18 +0200
commit80f9b6da66cb4eeabfd5ab97e422752ff134d590 (patch)
tree092126e5b948d5799c95e803fb735fbc794e8f26 /tests
parent7294180d28dcbb3ba84ae302084a0806e76fa8a0 (diff)
parente2639e08b097aa9e5cb1f9a38ef37c6caec05874 (diff)
downloaddotty-80f9b6da66cb4eeabfd5ab97e422752ff134d590.tar.gz
dotty-80f9b6da66cb4eeabfd5ab97e422752ff134d590.tar.bz2
dotty-80f9b6da66cb4eeabfd5ab97e422752ff134d590.zip
Merge pull request #2206 from dotty-staging/fix-#2198
Fix #2198: Don't widen module singletons
Diffstat (limited to 'tests')
-rw-r--r--tests/pos/i2198.scala6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/pos/i2198.scala b/tests/pos/i2198.scala
new file mode 100644
index 000000000..62ae7e8b5
--- /dev/null
+++ b/tests/pos/i2198.scala
@@ -0,0 +1,6 @@
+object Test {
+ val nil = scala.collection.immutable.Nil
+ def f(x: nil.type): Int = 3
+
+ f(scala.collection.immutable.Nil)
+}