library /*isNonNullableByDefault*/; // // Problems in library: // // pkg/front_end/testcases/general/function_bad_use.dart:1:7: Error: 'Function' is a built-in identifier, could not used as a class name. // class Function {} // ^^^^^^^^ // // pkg/front_end/testcases/general/function_bad_use.dart:3:9: Error: 'Function' is a built-in identifier, could not used as a type identifier. // class C {} // ^^^^^^^^ // // pkg/front_end/testcases/general/function_bad_use.dart:5:9: Error: 'Function' is a built-in identifier, could not used as a type identifier. // mixin M implements List {} // ^^^^^^^^ // import self as self; import "dart:core" as core; class Function extends core::Object { synthetic constructor •() → self::Function : super core::Object::•() ; } class C extends core::Object { synthetic constructor •() → self::C : super core::Object::•() ; } abstract class M extends core::Object implements core::List /*isMixinDeclaration*/ { } static method main() → dynamic {}