blob: 84857107525b0d17f9892b9b0b587b58c7fbe5f7 [file] [log] [blame]
library;
//
// Problems in library:
//
// pkg/front_end/testcases/general/many_errors.dart:8:3: Error: A const constructor can't have a body.
// Try removing either the 'const' keyword or the body.
// const A.named1() sync* {}
// ^^^^^
//
// pkg/front_end/testcases/general/many_errors.dart:13:1: Error: An external or native method can't have a body.
// external foo(String x) {
// ^^^^^^^^
//
// pkg/front_end/testcases/general/many_errors.dart:10:26: Error: New expression is not a constant expression.
// const A.named2() : x = new Object();
// ^^^
//
// pkg/front_end/testcases/general/many_errors.dart:10:24: Error: 'x' is a final instance variable that has already been initialized.
// const A.named2() : x = new Object();
// ^
// pkg/front_end/testcases/general/many_errors.dart:6:9: Context: 'x' was initialized here.
// final x = null;
// ^
//
// pkg/front_end/testcases/general/many_errors.dart:10:24: Error: Cannot invoke a non-'const' constructor where a const expression is expected.
// Try using a constructor or factory that is 'const'.
// const A.named2() : x = new Object();
// ^
//
import self as self;
import "dart:core" as core;
class A extends core::Object {
final field dynamic x = null;
constructor named1() self::A*
;
const constructor named2() self::A*
: final dynamic #t1 = throw invalid-expression "pkg/front_end/testcases/general/many_errors.dart:10:24: Error: Cannot invoke a non-'const' constructor where a const expression is expected.
Try using a constructor or factory that is 'const'.
const A.named2() : x = new Object();
^", super core::Object::•()
;
}
class B extends core::Object {
synthetic constructor •() → self::B*
;
}
class C extends core::Object {
field self::B* b;
synthetic constructor •() → self::C*
;
}
abstract class AbstractClass extends core::Object {
const constructor id() → self::AbstractClass*
: super core::Object::•()
;
}
external static method foo(core::String* x) → dynamic;
static method m() → dynamic
;
static method main() → dynamic
;