Handle modifiers correctly in "val to object" #KT-18919 Fixed

This commit is contained in:
Mikhail Glukhikh
2017-10-10 14:55:46 +03:00
committed by Mikhail Glukhikh
parent 0b5b5d8e89
commit 8e59d3e379
4 changed files with 19 additions and 2 deletions
+6
View File
@@ -0,0 +1,6 @@
// SKIP_ERRORS_BEFORE
// SKIP_ERRORS_AFTER
expect interface EmptyInterface
expect val <caret>ofInterface = object : EmptyInterface{}
@@ -0,0 +1,6 @@
// SKIP_ERRORS_BEFORE
// SKIP_ERRORS_AFTER
expect interface EmptyInterface
expect object ofInterface : EmptyInterface {}