aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/i1990.scala
diff options
context:
space:
mode:
authorodersky <odersky@gmail.com>2017-02-21 14:03:10 +0100
committerGitHub <noreply@github.com>2017-02-21 14:03:10 +0100
commit9f879c1677b467037f6c19cc0abe43e0adb802fa (patch)
treec4d473764ac0fd79e0f4d00e4a361fdc595cd90c /tests/pos/i1990.scala
parentf467be62da8978e506f58b702b84e74ef7ce09de (diff)
parentbd80a187c3792a4891bec72e0b27b858a5a992ab (diff)
downloaddotty-9f879c1677b467037f6c19cc0abe43e0adb802fa.tar.gz
dotty-9f879c1677b467037f6c19cc0abe43e0adb802fa.tar.bz2
dotty-9f879c1677b467037f6c19cc0abe43e0adb802fa.zip
Merge pull request #1996 from dotty-staging/fix-#1990
Fix #1990: Handle inlining where this proxies change types
Diffstat (limited to 'tests/pos/i1990.scala')
-rw-r--r--tests/pos/i1990.scala12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/pos/i1990.scala b/tests/pos/i1990.scala
new file mode 100644
index 000000000..77cea0af7
--- /dev/null
+++ b/tests/pos/i1990.scala
@@ -0,0 +1,12 @@
+class A {
+ class Foo {
+ inline def inlineMeth: Unit = {
+ new Bar
+ }
+ }
+ class Bar
+}
+
+class B extends A {
+ (new Foo).inlineMeth
+}