Sign in
android
/
platform
/
tools
/
idea
/
9ea67227e8fdcf8ed37e65bb96e32767291d0f4f
/
.
/
java
/
java-tests
/
testData
/
codeInsight
/
nullityinferrer
/
afterParameterPassed2NotNull.java
blob: 90113c2eb2fd3efff52c17efc61bec0c24f56842 [
file
] [
log
] [
blame
]
import
org
.
jetbrains
.
annotations
.*;
class
Test
{
void
foo
(
@NotNull
String
s
)
{
}
void
bar
(
@NotNull
String
str
)
{
foo
(
str
);
}
}