aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDmitry Petrashko <dark@d-d.me>2015-11-09 11:30:41 +0100
committerDmitry Petrashko <dark@d-d.me>2015-11-09 11:30:41 +0100
commit8eef182cfab2d4a23924c4478809d6e83bfc0b9b (patch)
treec1088ab653cd40f8c9494498d9cbb15464c97677 /tests
parent8c593779fd49f9085f69b6b5a9fe180ebede801e (diff)
parent4d39003f3ca112d03af1e7a51c9e59bf5eb510c5 (diff)
downloaddotty-8eef182cfab2d4a23924c4478809d6e83bfc0b9b.tar.gz
dotty-8eef182cfab2d4a23924c4478809d6e83bfc0b9b.tar.bz2
dotty-8eef182cfab2d4a23924c4478809d6e83bfc0b9b.zip
Merge pull request #899 from dotty-staging/fix-#880
Require outer pointer also for proxies of enclosing classes.
Diffstat (limited to 'tests')
-rw-r--r--tests/pos/i880.scala17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/pos/i880.scala b/tests/pos/i880.scala
new file mode 100644
index 000000000..0f2b642ef
--- /dev/null
+++ b/tests/pos/i880.scala
@@ -0,0 +1,17 @@
+object Test {
+ def test = {
+ val myName: String = ""
+ new AnyRef {
+ new Exception {
+ def name = myName
+ }
+ }
+ new AnyRef {
+ new Exception {
+ new AnyRef {
+ def name = myName
+ }
+ }
+ }
+ }
+}