blob: cfa942b330cb770125b171e2ad308e402fc4b909 [file] [log] [blame]
// Make sure that errors in multiple types in
// the same compilation unit are all shown.
class MultipleErrors1 {
// :: error: (assignment)
Object o1 = null;
}
class MultipleErrors2 {
// :: error: (assignment)
Object o2 = null;
}
interface MultipleErrors3 {
// :: error: (assignment)
Object o3 = null;
}