diff --git a/compiler/testData/checkerWithErrorTypes/quick/regressions/kt302.jet b/compiler/testData/checkerWithErrorTypes/quick/regressions/kt302.jet new file mode 100644 index 00000000000..df3d68e0d55 --- /dev/null +++ b/compiler/testData/checkerWithErrorTypes/quick/regressions/kt302.jet @@ -0,0 +1,13 @@ +// KT-302 Report an error when inheriting many implementations of the same member + +namespace kt302 + +trait A { + open fun foo() {} +} + +trait B { + open fun foo() {} +} + +class C : A, B {} //should be error here \ No newline at end of file