blob: 8f2941aa55c8b6eba0ec2aa9e7d79f0d235132d6 [file] [log] [blame]
library /*isNonNullableByDefault*/;
//
// Problems in library:
//
// pkg/front_end/testcases/general/type_parameter_usage_in_static_method_in_class.dart:6:10: Error: Type variables can't be used in static members.
// static U foo1() {
// ^
//
// pkg/front_end/testcases/general/type_parameter_usage_in_static_method_in_class.dart:10:15: Error: Type variables can't be used in static members.
// static List<U> foo1Prime() {
// ^
//
// pkg/front_end/testcases/general/type_parameter_usage_in_static_method_in_class.dart:14:20: Error: Type variables can't be used in static members.
// static void foo2(U x) {}
// ^
//
// pkg/front_end/testcases/general/type_parameter_usage_in_static_method_in_class.dart:15:30: Error: Type variables can't be used in static members.
// static void foo2Prime(List<U> x) {}
// ^
//
// pkg/front_end/testcases/general/type_parameter_usage_in_static_method_in_class.dart:27:10: Error: Type variables can't be used in static members.
// static U Function() foo8() {
// ^
//
// pkg/front_end/testcases/general/type_parameter_usage_in_static_method_in_class.dart:31:15: Error: Type variables can't be used in static members.
// static List<U> Function() foo8Prime() {
// ^
//
// pkg/front_end/testcases/general/type_parameter_usage_in_static_method_in_class.dart:35:24: Error: Type variables can't be used in static members.
// static void Function(U) foo9() {}
// ^
//
// pkg/front_end/testcases/general/type_parameter_usage_in_static_method_in_class.dart:36:29: Error: Type variables can't be used in static members.
// static void Function(List<U>) foo9Prime() {}
// ^
//
// pkg/front_end/testcases/general/type_parameter_usage_in_static_method_in_class.dart:37:21: Error: Type variables can't be used in static members.
// static void foo10(U Function()) {}
// ^
//
// pkg/front_end/testcases/general/type_parameter_usage_in_static_method_in_class.dart:39:31: Error: Type variables can't be used in static members.
// static void foo10Prime(List<U> Function()) {}
// ^
//
// pkg/front_end/testcases/general/type_parameter_usage_in_static_method_in_class.dart:44:35: Error: Type variables can't be used in static members.
// static void foo12(void Function(U) b) {}
// ^
//
// pkg/front_end/testcases/general/type_parameter_usage_in_static_method_in_class.dart:46:45: Error: Type variables can't be used in static members.
// static void foo12Prime(void Function(List<U>) b) {}
// ^
//
// pkg/front_end/testcases/general/type_parameter_usage_in_static_method_in_class.dart:49:35: Error: Type variables can't be used in static members.
// static void foo13(void Function(U b)) {}
// ^
//
// pkg/front_end/testcases/general/type_parameter_usage_in_static_method_in_class.dart:52:45: Error: Type variables can't be used in static members.
// static void foo13Prime(void Function(List<U> b)) {}
// ^
//
// pkg/front_end/testcases/general/type_parameter_usage_in_static_method_in_class.dart:54:15: Error: Type variables can't be used in static members.
// static late U foo14;
// ^
//
// pkg/front_end/testcases/general/type_parameter_usage_in_static_method_in_class.dart:55:20: Error: Type variables can't be used in static members.
// static late List<U> foo14Prime;
// ^
//
// pkg/front_end/testcases/general/type_parameter_usage_in_static_method_in_class.dart:56:15: Error: Type variables can't be used in static members.
// static late U Function(U) foo15;
// ^
//
// pkg/front_end/testcases/general/type_parameter_usage_in_static_method_in_class.dart:56:26: Error: Type variables can't be used in static members.
// static late U Function(U) foo15;
// ^
//
// pkg/front_end/testcases/general/type_parameter_usage_in_static_method_in_class.dart:57:20: Error: Type variables can't be used in static members.
// static late List<U> Function(List<U>) foo15Prime;
// ^
//
// pkg/front_end/testcases/general/type_parameter_usage_in_static_method_in_class.dart:57:37: Error: Type variables can't be used in static members.
// static late List<U> Function(List<U>) foo15Prime;
// ^
//
// pkg/front_end/testcases/general/type_parameter_usage_in_static_method_in_class.dart:17:5: Error: Type variables can't be used in static members.
// U foo4;
// ^
//
// pkg/front_end/testcases/general/type_parameter_usage_in_static_method_in_class.dart:18:10: Error: Type variables can't be used in static members.
// List<U> foo4Prime;
// ^
//
// pkg/front_end/testcases/general/type_parameter_usage_in_static_method_in_class.dart:19:15: Error: Type variables can't be used in static members.
// void foo5(U y) => print(y);
// ^
//
// pkg/front_end/testcases/general/type_parameter_usage_in_static_method_in_class.dart:20:25: Error: Type variables can't be used in static members.
// void foo5Prime(List<U> y) => print(y);
// ^
//
// pkg/front_end/testcases/general/type_parameter_usage_in_static_method_in_class.dart:21:5: Error: Type variables can't be used in static members.
// U foo6() => null;
// ^
//
// pkg/front_end/testcases/general/type_parameter_usage_in_static_method_in_class.dart:22:10: Error: Type variables can't be used in static members.
// List<U> foo6Prime() => throw '';
// ^
//
// pkg/front_end/testcases/general/type_parameter_usage_in_static_method_in_class.dart:23:19: Error: Type variables can't be used in static members.
// void Function(U y) foo7 = (U y) => y;
// ^
//
// pkg/front_end/testcases/general/type_parameter_usage_in_static_method_in_class.dart:23:32: Error: Type variables can't be used in static members.
// void Function(U y) foo7 = (U y) => y;
// ^
//
// pkg/front_end/testcases/general/type_parameter_usage_in_static_method_in_class.dart:24:24: Error: Type variables can't be used in static members.
// void Function(List<U> y) foo7Prime = (List<U> y) => y;
// ^
//
// pkg/front_end/testcases/general/type_parameter_usage_in_static_method_in_class.dart:24:48: Error: Type variables can't be used in static members.
// void Function(List<U> y) foo7Prime = (List<U> y) => y;
// ^
//
import self as self;
import "dart:core" as core;
class Foo<U extends core::Object? = dynamic> extends core::Object {
late static field invalid-type foo14;
late static field core::List<invalid-type> foo14Prime;
late static field (invalid-type) invalid-type foo15;
late static field (core::List<invalid-type>) core::List<invalid-type> foo15Prime;
synthetic constructor •() self::Foo<self::Foo::U%>
: super core::Object::•()
;
static method foo1() invalid-type {
return null;
}
static method foo1Prime() core::List<invalid-type> {
throw "";
}
static method foo2(invalid-type x) void {}
static method foo2Prime(core::List<invalid-type> x) void {}
static method foo3() void {
invalid-type foo4;
core::List<invalid-type> foo4Prime;
function foo5(invalid-type y) void
return core::print(y);
function foo5Prime(core::List<invalid-type> y) void
return core::print(y);
function foo6() invalid-type
return null;
function foo6Prime() core::List<invalid-type>
return throw "";
(invalid-type) void foo7 = (invalid-type y) void => y;
(core::List<invalid-type>) void foo7Prime = (core::List<invalid-type> y) void => y;
}
static method foo8() () invalid-type {
throw "";
}
static method foo8Prime() () core::List<invalid-type> {
throw "";
}
static method foo9() (invalid-type) void {}
static method foo9Prime() (core::List<invalid-type>) void {}
static method foo10(() invalid-type Function) void {}
static method foo10Prime(() core::List<invalid-type> Function) void {}
static method foo11((dynamic) void Function) void {}
static method foo12((invalid-type) void b) void {}
static method foo12Prime((core::List<invalid-type>) void b) void {}
static method foo13((invalid-type) void Function) void {}
static method foo13Prime((core::List<invalid-type>) void Function) void {}
}
static method main() dynamic {}