blob: 455f7796c1236dc05addb3c6394ae331b0c8bc00 [file] [log] [blame]
library;
//
// Problems in library:
//
// pkg/front_end/testcases/coverage/external_test.dart:10:25: Error: An external constructor can't initialize fields.
// Try removing the field initializers, or removing the keyword 'external'.
// external Foo.n24(this.x); // Error
// ^
//
import self as self;
import "dart:core" as core;
class Foo extends core::Object {
field core::int x = 1.{core::int::unary-}(){() core::int};
constructor •() self::Foo
: self::Foo::x = 0, super core::Object::•()
;
external constructor n24(core::int x) self::Foo
: final dynamic #t1 = invalid-expression "pkg/front_end/testcases/coverage/external_test.dart:10:25: Error: An external constructor can't initialize fields.
Try removing the field initializers, or removing the keyword 'external'.
external Foo.n24(this.x); // Error
^";
}