blob: 0e72dc9a50fb2217d676d81a71fdd8dde80e3a14 [file] [log] [blame]
//file
import org.jetbrains.annotations.Nullable;
class C {
@Nullable private final String string = getString();
static String getString() { return x(); }
}