fix tests in org.jetbrains.kotlin.idea.quickfix

This commit is contained in:
Michael Nedzelsky
2015-09-04 23:09:17 +03:00
parent 32c66914fe
commit 92ca057b4a
31 changed files with 32 additions and 32 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
// "Make 'object : T {}' abstract" "false"
// ACTION: Implement members
// ACTION: Split property declaration
// ERROR: <html>Object must be declared abstract or implement abstract member<br/><b>internal</b> <b>abstract</b> <b>fun</b> foo(): kotlin.Unit <i>defined in</i> T</html>
// ERROR: <html>Object must be declared abstract or implement abstract member<br/><b>public</b> <b>abstract</b> <b>fun</b> foo(): kotlin.Unit <i>defined in</i> T</html>
interface T {
fun foo()
}