From 4529141cc154a9d7359e16344d7a318ca529f89f Mon Sep 17 00:00:00 2001 From: Martin Odersky Date: Thu, 29 Sep 2011 12:45:53 +0000 Subject: Following Paul's detective work, fixed Java cla... Following Paul's detective work, fixed Java class loading in reflection. Moved test code.scala into checkin build. Yay! --- test/files/run/code.check | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 test/files/run/code.check (limited to 'test/files/run/code.check') diff --git a/test/files/run/code.check b/test/files/run/code.check new file mode 100644 index 0000000000..4bc36424ee --- /dev/null +++ b/test/files/run/code.check @@ -0,0 +1,18 @@ +testing: ((x: Int) => x.$plus(ys.length)) +result = ((x: Int) => x.+{(x: )Int}(ys.length{Int}){Int}){Int => Int} +testing: (() => { + val e: Element = new Element("someName"); + e +}) +result = (() => { + val e: Element = new Element{Element}{(name: )Element}("someName"{java.lang.String("someName")}){Element}; + e{Element} +}{Element}){() => Element} +testing: (() => truc.elem = 6) +result = (() => truc.elem{Int} = 6{Int(6)}{Unit}){() => Unit} +testing: (() => truc.elem = truc.elem.$plus(6)) +result = (() => truc.elem{Int} = truc.elem.+{(x: )Int}(6{Int(6)}){Int}{Unit}){() => Unit} +testing: (() => new baz.BazElement("someName")) +result = (() => new baz.BazElement{baz.BazElement}{(name: )baz.BazElement}("someName"{java.lang.String("someName")}){baz.BazElement}){() => baz.BazElement} +testing: ((x: Int) => x.$plus(ys.length)) +result = ((x: Int) => x.+{(x: )Int}(ys.length{Int}){Int}){Int => Int} -- cgit v1.2.3