aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/caseclasses.scala
diff options
context:
space:
mode:
authorDmitry Petrashko <dmitry.petrashko@gmail.com>2015-05-12 18:30:53 +0200
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2015-05-12 18:30:53 +0200
commit89bacb9c25a58454ff1878e67f7ea07ffc8c269f (patch)
tree51f1ff6c66aebe1b6109b1cffcc2bb8e4cf760a3 /tests/pending/run/caseclasses.scala
parenta0fa33deafbea1bf53edc068c5ed9db5592822f9 (diff)
downloaddotty-89bacb9c25a58454ff1878e67f7ea07ffc8c269f.tar.gz
dotty-89bacb9c25a58454ff1878e67f7ea07ffc8c269f.tar.bz2
dotty-89bacb9c25a58454ff1878e67f7ea07ffc8c269f.zip
Run tests as they were in scala.
Diffstat (limited to 'tests/pending/run/caseclasses.scala')
-rw-r--r--tests/pending/run/caseclasses.scala51
1 files changed, 51 insertions, 0 deletions
diff --git a/tests/pending/run/caseclasses.scala b/tests/pending/run/caseclasses.scala
new file mode 100644
index 000000000..668c984f3
--- /dev/null
+++ b/tests/pending/run/caseclasses.scala
@@ -0,0 +1,51 @@
+case class Foo(x: Int)(y: Int)
+
+case class Bar()
+
+abstract class Base
+abstract case class Abs(x: Int) extends Base
+
+object M {
+ abstract case class C(x: String) {}
+ object C extends (String => C) {
+ def apply(x: String): C = {
+ println("creating C("+x+")")
+ new C(x) {}
+ }
+ }
+}
+
+object Test extends App {
+
+ def Abs(x: Int) = new Abs(x * 2){}
+ Abs(2) match {
+ case Abs(4) => ;
+ }
+
+ def fn[a,b](x: a => b) = x;
+ val f = fn(Foo(1))
+ (f(2): AnyRef) match {
+ case Foo(1) => Console.println("OK")
+ case Bar() => Console.println("NO")
+ }
+ try {
+ Bar() productElement 3
+ throw new NullPointerException("duh")
+ } catch {
+ case x:IndexOutOfBoundsException =>
+ }
+
+ M.C("hi") match {
+ case M.C("hi") => println("OK")
+ case _ => println("NO")
+ }
+
+ try {
+ f(2) productElement 3
+ throw new NullPointerException("duh")
+ } catch {
+ case x:IndexOutOfBoundsException =>
+ }
+
+}
+