another case in JetDiagnosticsTest

simple unclassified case not covered by other tests
This commit is contained in:
Stepan Koltsov
2012-02-09 22:25:11 +04:00
parent 47764add22
commit 6a8f2e14fb
@@ -0,0 +1,13 @@
trait Aaa<T> {
fun zzz(value: T): Unit
}
class Bbb<T>() : Aaa<T> {
override fun zzz(value: T) { }
}
fun foo() {
var a = Bbb<Double>()
a.zzz(10.0)
}