summaryrefslogtreecommitdiff
path: root/test/files/neg
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-07-28 20:07:36 -0700
committerPaul Phillips <paulp@improving.org>2012-07-28 20:07:36 -0700
commit9cf4dd6bbeccc6a1ec2e8dbdbcf9aaa59b5bf91f (patch)
treeccf813a7c39cbc9a7178c11fd8839937d21173c0 /test/files/neg
parent4db27fc4676995c422c0964e27d305f0264e1389 (diff)
parentf2c1736b94c96a6e6950801ee053b30e872985a4 (diff)
downloadscala-9cf4dd6bbeccc6a1ec2e8dbdbcf9aaa59b5bf91f.tar.gz
scala-9cf4dd6bbeccc6a1ec2e8dbdbcf9aaa59b5bf91f.tar.bz2
scala-9cf4dd6bbeccc6a1ec2e8dbdbcf9aaa59b5bf91f.zip
Merge pull request #1002 from magarciaEPFL/fixes210
SI-6142: warn @inline-methods ending up not inlined (rightfully or not)
Diffstat (limited to 'test/files/neg')
-rw-r--r--test/files/neg/t3234.check2
-rw-r--r--test/files/neg/t3234.flags1
-rw-r--r--test/files/neg/t3234.scala19
3 files changed, 22 insertions, 0 deletions
diff --git a/test/files/neg/t3234.check b/test/files/neg/t3234.check
new file mode 100644
index 0000000000..477b021e5e
--- /dev/null
+++ b/test/files/neg/t3234.check
@@ -0,0 +1,2 @@
+error: there were 1 inliner warnings; re-run with -Yinline-warnings for details
+one error found
diff --git a/test/files/neg/t3234.flags b/test/files/neg/t3234.flags
new file mode 100644
index 0000000000..c9cefdc4b9
--- /dev/null
+++ b/test/files/neg/t3234.flags
@@ -0,0 +1 @@
+-Yinline -Xfatal-warnings \ No newline at end of file
diff --git a/test/files/neg/t3234.scala b/test/files/neg/t3234.scala
new file mode 100644
index 0000000000..443d0467f0
--- /dev/null
+++ b/test/files/neg/t3234.scala
@@ -0,0 +1,19 @@
+trait Trait1 {
+ // need more work before this one works
+ // @inline
+ def foo2(n: Int) = n*n
+}
+
+trait Trait2 {
+ @inline def foo3(n: Int) = 1
+}
+
+class Base extends Trait1 {
+ @inline def foo(n: Int) = n
+}
+
+object Test extends Base with Trait2 {
+ def main(args: Array[String]) = {
+ println(foo(42) + foo2(11) + foo3(2))
+ }
+} \ No newline at end of file