aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2017-04-09 17:01:15 +0200
committerMartin Odersky <odersky@gmail.com>2017-04-09 17:01:28 +0200
commite2639e08b097aa9e5cb1f9a38ef37c6caec05874 (patch)
treec7211ccb47be4fd4d945769d2cdad3ba909cb907 /tests
parentb8bb34dd0ea68cfed09ed54604f659a787037d2d (diff)
downloaddotty-e2639e08b097aa9e5cb1f9a38ef37c6caec05874.tar.gz
dotty-e2639e08b097aa9e5cb1f9a38ef37c6caec05874.tar.bz2
dotty-e2639e08b097aa9e5cb1f9a38ef37c6caec05874.zip
Fix #2198: Don't widen module singletons
Since module classes are a compiler-generated construct that's not directly visible to programmers, it seems better not to automatically widen a module singleton to its underlying class. Fixes #2198.
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)
+}