Keep empty bodies for declarations with comments (KT-16078)

#KT-16078 Fixed
This commit is contained in:
Nikolay Krasko
2017-02-16 17:59:36 +03:00
parent e16b0524b6
commit d58707972d
13 changed files with 75 additions and 20 deletions
+16
View File
@@ -25,3 +25,19 @@ class EmptyProperties {
get() { return "" }
set(value) {}
}
class EmptyProperties {
/**
*
*/
var newline: String
/**
*
*/
get() { return "" }
/**
*
*/
set(value) {}
}