summaryrefslogtreecommitdiff
path: root/test/files/neg/unchecked2.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/unchecked2.scala')
-rw-r--r--test/files/neg/unchecked2.scala8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/files/neg/unchecked2.scala b/test/files/neg/unchecked2.scala
new file mode 100644
index 0000000000..a2e757e1dc
--- /dev/null
+++ b/test/files/neg/unchecked2.scala
@@ -0,0 +1,8 @@
+object Test {
+ Some(123).isInstanceOf[Option[Int]]
+ Some(123).isInstanceOf[Option[String]]
+ Some(123).isInstanceOf[Option[List[String]]]
+ Some(123).isInstanceOf[Option[List[Int => String]]]
+ Some(123).isInstanceOf[Option[(String, Double)]]
+ Some(123).isInstanceOf[Option[String => Double]]
+}