UAST test data fixes: @null in render

as a "nullability" annotation for primitive types
This commit is contained in:
Nicolay Mitropolsky
2017-10-11 20:36:47 +03:00
committed by Nikolay Krasko
parent 9fed8f1d24
commit 7c3c59de00
7 changed files with 25 additions and 25 deletions
@@ -1,4 +1,4 @@
public final class DefaultParameterValuesKt {
public static final fun foo(a: int, foo: java.lang.String) : void {
public static final fun foo(@null a: int, @org.jetbrains.annotations.Nullable foo: java.lang.String) : void {
}
}