Added 'change visibility modifier' quick fix

This commit is contained in:
Svetlana Isakova
2012-04-04 14:22:10 +04:00
parent fbffbc541a
commit 0f20d4a6e2
10 changed files with 264 additions and 59 deletions
@@ -0,0 +1,9 @@
// "Change visibility modifier" "true"
trait ParseResult<out T> {
public val success : Boolean
public val value : T
}
class Success<T>(<caret>override val value : T) : ParseResult<T> {
public override val success : Boolean = true
}