blob: 9bdf11749dc76a2f7cb8902e4263c4698c1cd70f [file] [log] [blame]
library;
//
// Problems in library:
//
// pkg/front_end/testcases/general/type_variable_uses.dart:7:15: Warning: Can only use type variables in instance methods.
// static C<T> staticMethod() {
// ^
//
import self as self;
import "dart:core" as core;
class C<T extends core::Object* = dynamic> extends core::Object {
const constructor •() self::C<self::C::T*>*
: super core::Object::•()
;
static method staticMethod() self::C<dynamic>*
;
method instanceMethod() self::C<self::C::T*>*
;
}
static method main() dynamic
;