summaryrefslogtreecommitdiff
path: root/test/files/neg/t7629-view-bounds-deprecation.scala
diff options
context:
space:
mode:
authorSimon Ochsenreither <simon@ochsenreither.de>2013-08-20 18:19:33 +0200
committerSimon Ochsenreither <simon@ochsenreither.de>2013-09-25 15:16:12 +0200
commit96ff8c5d0b49a0c6c7353c57abe9bc10e6aed70f (patch)
treecd55b66d53c99df3af445366bd86faed7e6adfae /test/files/neg/t7629-view-bounds-deprecation.scala
parentbda48577d022811be58ce2b7f9e46890543ad45b (diff)
downloadscala-96ff8c5d0b49a0c6c7353c57abe9bc10e6aed70f.tar.gz
scala-96ff8c5d0b49a0c6c7353c57abe9bc10e6aed70f.tar.bz2
scala-96ff8c5d0b49a0c6c7353c57abe9bc10e6aed70f.zip
SI-7629 Deprecate view bounds
This introduces a warning(/error with -Xfuture) with a general migration advice. The IDE can use the warning to offer a quick fix with the specific refactoring necessary.
Diffstat (limited to 'test/files/neg/t7629-view-bounds-deprecation.scala')
-rw-r--r--test/files/neg/t7629-view-bounds-deprecation.scala4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/files/neg/t7629-view-bounds-deprecation.scala b/test/files/neg/t7629-view-bounds-deprecation.scala
new file mode 100644
index 0000000000..a6ede1fcc3
--- /dev/null
+++ b/test/files/neg/t7629-view-bounds-deprecation.scala
@@ -0,0 +1,4 @@
+object Test {
+ def f[A <% Int](a: A) = null
+ def g[C, B <: C, A <% B : Numeric](a: A) = null
+}