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 ParametersWithDefaultValuesKt {
public static final fun foo(a: int, b: java.lang.String, c: int, flag: boolean) : void {
public static final fun foo(@null a: int, @org.jetbrains.annotations.NotNull b: java.lang.String, @null c: int, @null flag: boolean) : void {
}
}