summaryrefslogtreecommitdiff
path: root/test/files/neg/t7629-view-bounds-deprecation.check
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.check
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.check')
-rw-r--r--test/files/neg/t7629-view-bounds-deprecation.check11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/files/neg/t7629-view-bounds-deprecation.check b/test/files/neg/t7629-view-bounds-deprecation.check
new file mode 100644
index 0000000000..ed77c15c54
--- /dev/null
+++ b/test/files/neg/t7629-view-bounds-deprecation.check
@@ -0,0 +1,11 @@
+t7629-view-bounds-deprecation.scala:2: warning: View bounds are deprecated. Use an implicit parameter instead.
+Example: Instead of `def f[A <% Int](a: A)` use `def f[A](a: A)(implicit ev: A => Int)`.
+ def f[A <% Int](a: A) = null
+ ^
+t7629-view-bounds-deprecation.scala:3: warning: View bounds are deprecated. Use an implicit parameter instead.
+Example: Instead of `def f[A <% Int](a: A)` use `def f[A](a: A)(implicit ev: A => Int)`.
+ def g[C, B <: C, A <% B : Numeric](a: A) = null
+ ^
+error: No warnings can be incurred under -Xfatal-warnings.
+two warnings found
+one error found