Annotation constructor parameters are never nullable

This commit is contained in:
Andrey Breslav
2014-01-14 15:39:46 +04:00
parent 65d90e18a2
commit bf20c3a734
16 changed files with 31 additions and 29 deletions
@@ -3,7 +3,7 @@ package test
public trait CustomAnnotationWithDefaultParameter : java.lang.Object {
public final annotation class MyAnnotation : jet.Annotation {
public constructor MyAnnotation(/*0*/ first: jet.String?, /*1*/ second: jet.String? = ...)
public constructor MyAnnotation(/*0*/ first: jet.String, /*1*/ second: jet.String = ...)
public abstract fun first(): jet.String?
public abstract fun second(): jet.String?
}