Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
cae7f90b594750d624e94b3325571f4b5ebff2f0
/
.
/
compiler
/
testData
/
compileKotlinAgainstJava
/
CheckNotNull.java
blob: 757fdaff9ab771ffd67a168bf31bcaebf3053d6e [
file
] [
log
] [
blame
]
package
test
;
import
org
.
jetbrains
.
annotations
.
NotNull
;
public
class
CheckNotNull
{
@NotNull
public
String
returnNotNull
()
{
return
"42"
;
}
}