aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/implicits2.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pos/implicits2.scala')
-rw-r--r--tests/pos/implicits2.scala19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/pos/implicits2.scala b/tests/pos/implicits2.scala
new file mode 100644
index 000000000..8e566c19f
--- /dev/null
+++ b/tests/pos/implicits2.scala
@@ -0,0 +1,19 @@
+/* Compile with
+
+ dotc implicits2.scala -Xprint:front -Xprint-types -verbose
+
+ and verify that the inserted wrapString comes from Predef. You should see
+
+ val x: <root>.scala.collection.immutable.WrappedString =
+ <
+ <scala.Predef.wrapString:
+ ((s: java.lang.String)scala.collection.immutable.WrappedString)
+ >
+ (<"abc":java.lang.String("abc")>):scala.collection.immutable.WrappedString
+ >
+*/
+object implicits2 {
+
+ val x: scala.collection.immutable.WrappedString = "abc"
+
+}