Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f467c970b2a4ee4ada1a66e72db80b847652c1d1
/
.
/
compiler
/
testData
/
loadJava
/
compiledJava
/
notNull
/
NotNullIntArray.java
blob: 7635322b66a18c7bf9c1df3d0952494012d33b65 [
file
] [
log
] [
blame
]
package
test
;
import
org
.
jetbrains
.
annotations
.
NotNull
;
public
class
NotNullIntArray
{
@NotNull
public
int
[]
hi
()
{
return
null
;
}
}