summaryrefslogtreecommitdiff
path: root/test/files/neg/t7783.scala
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2013-10-03 00:55:43 -0700
committerJason Zaugg <jzaugg@gmail.com>2013-10-03 00:55:43 -0700
commite20f9e9f1fcf2a25603b2b75528e4d9395557411 (patch)
treecc4963c72097a2b50e4804a7bc57e2b25974bdaf /test/files/neg/t7783.scala
parent7aa79660d4d115270c99c8e35908139e36f718a8 (diff)
parent2ccbfa57783270049105b8c171d69159d54e578c (diff)
downloadscala-e20f9e9f1fcf2a25603b2b75528e4d9395557411.tar.gz
scala-e20f9e9f1fcf2a25603b2b75528e4d9395557411.tar.bz2
scala-e20f9e9f1fcf2a25603b2b75528e4d9395557411.zip
Merge pull request #2985 from retronym/ticket/7783
Don't issue deprecation warnings for inferred TypeTrees
Diffstat (limited to 'test/files/neg/t7783.scala')
-rw-r--r--test/files/neg/t7783.scala15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/files/neg/t7783.scala b/test/files/neg/t7783.scala
new file mode 100644
index 0000000000..995b644a09
--- /dev/null
+++ b/test/files/neg/t7783.scala
@@ -0,0 +1,15 @@
+object O { class C; @deprecated("", "") type D = C; def foo: Seq[D] = Nil }
+
+object NoWarn {
+ O.foo // nowarn
+ O.foo +: Nil // nowarn
+ def bar(a: Any, b: Any) = () // nowarn
+ bar(b = O.foo, a = ()) // nowarn
+}
+
+object Warn {
+ type T = O.D
+ locally(null: O.D)
+ val x: O.D = null
+ locally(null.asInstanceOf[O.D])
+}