summaryrefslogtreecommitdiff
path: root/test/files/run/t7240/Test_2.scala
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2013-03-11 11:15:49 +0100
committerEugene Burmako <xeno.by@gmail.com>2013-03-12 09:06:15 +0100
commita4fb77332cf641b023b46af5533b6007948b766e (patch)
tree2eae8b38ecab0d65f47ed7fbf41bd55d184078e0 /test/files/run/t7240/Test_2.scala
parent5d54cf9e375d796c59b1dd488c15f88f4bfb14d6 (diff)
downloadscala-a4fb77332cf641b023b46af5533b6007948b766e.tar.gz
scala-a4fb77332cf641b023b46af5533b6007948b766e.tar.bz2
scala-a4fb77332cf641b023b46af5533b6007948b766e.zip
SI-7240 fixes language feature lookup
As I discovered today, Definitions.getMember have a fallback clause, which accounts for the phases which have inner classes flattened. This fallback uses nme.flattenedName to compute a flattened name, but unfortunately nme.flattenedName produces a TermName, not a TypeName, which means that the fallback will commence search in a wrong namespace with predictable results. The commit also changes another usage of nme.flattenedName in a type name context. That one was correctly converting a TermName result to TypeName, so this is not a bugfix, but just a refactoring for the sake of being consistent.
Diffstat (limited to 'test/files/run/t7240/Test_2.scala')
-rw-r--r--test/files/run/t7240/Test_2.scala3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/files/run/t7240/Test_2.scala b/test/files/run/t7240/Test_2.scala
new file mode 100644
index 0000000000..2450bdabf9
--- /dev/null
+++ b/test/files/run/t7240/Test_2.scala
@@ -0,0 +1,3 @@
+object Test extends App {
+ bakery.Bakery.failure
+} \ No newline at end of file