blob: ef4a89c56066f6582e995171196a91bec1ac2754 [file] [log] [blame]
class Test {
public String noNull(String text) {
assert text != null;
return "";
}
private void foo() {
String str = "";
assert str != null;
}
}