blob: a9cb45972c2c6e9d28b8d1decfddf3a59974e72e [file] [log] [blame]
library /*isNonNullableByDefault*/;
//
// Problems in library:
//
// pkg/front_end/testcases/general/null_aware_super.dart:10:18: Error: The operator '?.' cannot be used with 'super' because 'super' cannot be null.
// Try replacing '?.' with '.'
// Class() : super?.named();
// ^^
//
import self as self;
import "dart:core" as core;
class Super extends core::Object {
constructor named() self::Super
;
}
class Class extends self::Super {
constructor •() self::Class
;
}
static method main() dynamic
;