aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t5210.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t5210.scala')
-rw-r--r--tests/untried/pos/t5210.scala10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/untried/pos/t5210.scala b/tests/untried/pos/t5210.scala
new file mode 100644
index 000000000..e85037a90
--- /dev/null
+++ b/tests/untried/pos/t5210.scala
@@ -0,0 +1,10 @@
+object WithOpTest {
+ trait WithOp extends Cloneable {
+ def f: this.type = this
+ def g1: this.type = f
+ def g2: this.type = {
+ val t = f
+ t
+ }
+ }
+}