summaryrefslogtreecommitdiff
path: root/test/files/pos
diff options
context:
space:
mode:
authorMiguel Garcia <miguelalfredo.garcia@epfl.ch>2012-07-26 20:35:21 +0200
committerMiguel Garcia <miguelalfredo.garcia@epfl.ch>2012-07-26 20:35:21 +0200
commitf2c1736b94c96a6e6950801ee053b30e872985a4 (patch)
tree50129acd31031f811f4eb662f4809b05a82d95a8 /test/files/pos
parentad08f24448729009fc8d5ff0acf307a43b4cfe0a (diff)
downloadscala-f2c1736b94c96a6e6950801ee053b30e872985a4.tar.gz
scala-f2c1736b94c96a6e6950801ee053b30e872985a4.tar.bz2
scala-f2c1736b94c96a6e6950801ee053b30e872985a4.zip
SI-6142: warn @inline-methods ending up not inlined (rightfully or not)
Diffstat (limited to 'test/files/pos')
-rw-r--r--test/files/pos/t3234.flags1
-rw-r--r--test/files/pos/t3234.scala19
2 files changed, 0 insertions, 20 deletions
diff --git a/test/files/pos/t3234.flags b/test/files/pos/t3234.flags
deleted file mode 100644
index c9cefdc4b9..0000000000
--- a/test/files/pos/t3234.flags
+++ /dev/null
@@ -1 +0,0 @@
--Yinline -Xfatal-warnings \ No newline at end of file
diff --git a/test/files/pos/t3234.scala b/test/files/pos/t3234.scala
deleted file mode 100644
index 443d0467f0..0000000000
--- a/test/files/pos/t3234.scala
+++ /dev/null
@@ -1,19 +0,0 @@
-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