summaryrefslogtreecommitdiff
path: root/test/files/run/t5356.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t5356.scala')
-rw-r--r--test/files/run/t5356.scala12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/files/run/t5356.scala b/test/files/run/t5356.scala
new file mode 100644
index 0000000000..f7696c6088
--- /dev/null
+++ b/test/files/run/t5356.scala
@@ -0,0 +1,12 @@
+object Test {
+ def f(x: { def toInt: Int }) = println(x.toInt + " " + x.getClass.getName)
+
+ def main(args: Array[String]): Unit = {
+ f(1)
+ f(1.toInt)
+ f(BigInt(1))
+ f(1d)
+ f(1f)
+ println((1: { def toInt: Int }).toInt)
+ }
+}