aboutsummaryrefslogtreecommitdiff
path: root/tests/pickling/extmethods.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2015-03-08 22:02:22 +0100
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2015-03-18 11:16:37 +0100
commit5962a931c83622ce065bc1ce9add049ade89bfcf (patch)
tree24851bbc76f1ca537456715c44a9f866a5c00668 /tests/pickling/extmethods.scala
parent19bfc0c6c9be9c4c3fdca55480e01e980a493b42 (diff)
downloaddotty-5962a931c83622ce065bc1ce9add049ade89bfcf.tar.gz
dotty-5962a931c83622ce065bc1ce9add049ade89bfcf.tar.bz2
dotty-5962a931c83622ce065bc1ce9add049ade89bfcf.zip
Pickling test reorg
Move pickling tests into separate top-level test directory. That way they are not needlessly pos-tested before. Also, disable core tests for now - after rebasing we get a stale symbol error. Need to investigate that.
Diffstat (limited to 'tests/pickling/extmethods.scala')
-rw-r--r--tests/pickling/extmethods.scala8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/pickling/extmethods.scala b/tests/pickling/extmethods.scala
new file mode 100644
index 000000000..1cbc9f2ee
--- /dev/null
+++ b/tests/pickling/extmethods.scala
@@ -0,0 +1,8 @@
+package extMethods
+
+trait That1[A]
+class T[A, This <: That1[A]](val x: Int) extends AnyVal {
+ self: This =>
+ var next: This = _
+ final def loop(x: This, cnt: Int): Int = loop(x, cnt + 1)
+}