summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-01-17 11:19:35 -0800
committerPaul Phillips <paulp@improving.org>2012-01-17 11:22:11 -0800
commit121bd609d82227446d1f638ecf5da9b604a77a13 (patch)
tree56d4ed9067cb502083fa4017952b323cfd3bb897 /test
parent2820770bffe2e7d180bccbcd7a3d83944b1dd8d6 (diff)
downloadscala-121bd609d82227446d1f638ecf5da9b604a77a13.tar.gz
scala-121bd609d82227446d1f638ecf5da9b604a77a13.tar.bz2
scala-121bd609d82227446d1f638ecf5da9b604a77a13.zip
Revert "Fixing inliner visibility issue."
This reverts commit 2820770bffe2e7d180bccbcd7a3d83944b1dd8d6. Last minute change had unintended consequences.
Diffstat (limited to 'test')
-rw-r--r--test/files/pos/t4925.flags1
-rw-r--r--test/files/pos/t4925/S_1.scala6
-rw-r--r--test/files/pos/t4925/S_2.scala8
3 files changed, 0 insertions, 15 deletions
diff --git a/test/files/pos/t4925.flags b/test/files/pos/t4925.flags
deleted file mode 100644
index ea03113c66..0000000000
--- a/test/files/pos/t4925.flags
+++ /dev/null
@@ -1 +0,0 @@
--optimise -Xfatal-warnings \ No newline at end of file
diff --git a/test/files/pos/t4925/S_1.scala b/test/files/pos/t4925/S_1.scala
deleted file mode 100644
index 0b3a75b8f7..0000000000
--- a/test/files/pos/t4925/S_1.scala
+++ /dev/null
@@ -1,6 +0,0 @@
-class A {
- final class Inner {
- @inline def foo = 7
- }
- def inner = new Inner
-}
diff --git a/test/files/pos/t4925/S_2.scala b/test/files/pos/t4925/S_2.scala
deleted file mode 100644
index f32d871367..0000000000
--- a/test/files/pos/t4925/S_2.scala
+++ /dev/null
@@ -1,8 +0,0 @@
-class B {
- def baz = {
- val a = new A
- val o = a.inner
- val z = o.foo
- println(z)
- }
-}