Generate @NotNull annotations on delegated functions

This commit is contained in:
Andrey Breslav
2014-05-25 12:32:03 +02:00
parent afca70eb41
commit 8e4954ab67
10 changed files with 137 additions and 61 deletions
@@ -0,0 +1,7 @@
// Derived
trait Base {
fun baz(s: String): String
}
class Derived(x: Base): Base by x