Quickfix for NOTHING_TO_OVERRIDE: add function to one of supertypes.

This commit is contained in:
Michał Sapalski
2013-04-22 15:26:54 +02:00
committed by Andrey Breslav
parent e96cf045dd
commit d4fc814d76
22 changed files with 504 additions and 13 deletions
@@ -0,0 +1,6 @@
// "Add function to supertype..." "true"
trait A {}
trait B {}
class C: A, B {
<caret>override fun foo() {}
}