blob: 4929abfab3a9141773634822f2a21800e22cd2f8 [file] [log] [blame]
library /*isNonNullableByDefault*/;
//
// Problems in library:
//
// pkg/front_end/testcases/general/incomplete_field_formal_parameter.dart:6:7: Error: 'this' can't be used as an identifier because it's a keyword.
// Try renaming this to be an identifier that isn't a keyword.
// C.a(this);
// ^^^^
//
// pkg/front_end/testcases/general/incomplete_field_formal_parameter.dart:7:12: Error: Expected an identifier, but got ')'.
// Try inserting an identifier before ')'.
// C.b(this.);
// ^
//
// pkg/front_end/testcases/general/incomplete_field_formal_parameter.dart:8:7: Error: 'this' can't be used as an identifier because it's a keyword.
// Try renaming this to be an identifier that isn't a keyword.
// C.c(this, p);
// ^^^^
//
// pkg/front_end/testcases/general/incomplete_field_formal_parameter.dart:9:12: Error: Expected an identifier, but got ','.
// Try inserting an identifier before ','.
// C.d(this., p);
// ^
//
import self as self;
import "dart:core" as core;
class C extends core::Object {
constructor a(dynamic this) self::C
: super core::Object::•()
;
constructor b() self::C
: super core::Object::•()
;
constructor c(dynamic this, dynamic p) self::C
: super core::Object::•()
;
constructor d() self::C
: super core::Object::•()
;
}