blob: a6f718509ff4fb107f601634d96af2b33976295b [file] [log] [blame]
// "Create Field 'field'" "true"
class A {
public static final String NOTIFICATION_ENABLED = "NOTIFICATION_ENABLED";
public static final String NOTIFICATION_DEVICE_NAME = "NOTIFICATION_DEVICE_NAME";
public static String getString(String key)
{
return getString(key, "");
}
public static String getString(String key, String defaultValue)
{
return null;
}
}
class B {
{
String s = A.fi<caret>eld;
}
}