blob: 7f86da8a8ab9d579c4636b58d8434b875ec6dd33 [file] [log] [blame]
library;
//
// Problems in library:
//
// pkg/front_end/testcases/regress/issue_34498.dart:8:3: Warning: 'lib.MyClass' can't be used as a type because 'lib' doesn't refer to an import prefix.
// lib.MyClass get lib => null; // (1)
// ^^^^^^^^^^^
//
// pkg/front_end/testcases/regress/issue_34498.dart:10:3: Warning: 'foo' isn't a type.
// foo foo() {}
// ^^^
// pkg/front_end/testcases/regress/issue_34498.dart:10:7: Context: This isn't a type.
// foo foo() {}
// ^^^
//
// pkg/front_end/testcases/regress/issue_34498.dart:12:3: Warning: Type 'Missing' not found.
// Missing bar() {}
// ^^^^^^^
//
// pkg/front_end/testcases/regress/issue_34498.dart:20:3: Warning: Can't use type arguments with type variable 'T'.
// Try removing the type arguments.
// T<String> foo() {}
// ^
//
import self as self;
import "dart:core" as core;
class A extends core::Object {
synthetic constructor •() self::A
;
get lib() invalid-type
;
method foo() invalid-type
;
method bar() invalid-type
;
}
class B extends self::A {
synthetic constructor •() self::B
;
}
class C<T extends core::Object = dynamic> extends core::Object {
synthetic constructor •() self::C<self::C::T>
;
method foo() invalid-type
;
}
static final field self::A a;
static method main() dynamic
;