blob: 9431005ce94d4ba85619fd56385566621c2cd9f0 [file] [log] [blame]
library;
//
// Problems in library:
//
// pkg/front_end/testcases/sdk_diagnostic.dart:5:7: Error: The non-abstract class 'C' is missing implementations for these members:
// - Iterable.iterator
// Try to either
// - provide an implementation,
// - inherit an implementation from a superclass or mixin,
// - mark the class as abstract, or
// - provide a 'noSuchMethod' implementation.
//
// class C extends Iterable<Object> {
// ^
// dart:core:1: Context: 'Iterable.iterator' is defined here.
//
import self as self;
import "dart:core" as core;
class C extends core::Iterable<core::Object> {
synthetic constructor •() self::C
;
}
static method test() dynamic
;
static method main() dynamic
;