blob: 2530346dcd1d9ca5873ed89543e03dbf8e03ed9a [file] [log] [blame]
package android.test.anno;
@AnnoFancyType(num=5) // first occurrence of AnnoFancyType
// we inherit @AnnoSimpleType
@AnnoSimpleType2 // AnnoSimpleType2 here *and* inherited from parent
public class SubNoted extends SimplyNoted implements INoted {
int mBar;
public int bar() {
return 0;
}
}