blob: f5152ff2430bba16ae74083853140c6901b2f8d1 [file] [log] [blame]
library;
import self as self;
import "dart:core" as core;
class Constant extends core::Object {
const constructor •() void
: super core::Object::•()
;
}
class NotConstant extends core::Object {
synthetic constructor •() void
: super core::Object::•()
;
}
static method foo({dynamic a = invalid-expression "pkg/front_end/testcases/magic_const.dart:15:9: Error: The keyword 'const' or 'new' is required here. Due to an implementation limit, the compiler isn't able to infer 'const' or 'new' here.
foo({a: Constant(), b: Constant(), c: []}) {}
^", dynamic b = invalid-expression "pkg/front_end/testcases/magic_const.dart:15:24: Error: The keyword 'const' or 'new' is required here. Due to an implementation limit, the compiler isn't able to infer 'const' or 'new' here.
foo({a: Constant(), b: Constant(), c: []}) {}
^", dynamic c = <dynamic>[]}) dynamic {}
static method test() dynamic {
invalid-expression "pkg/front_end/testcases/magic_const.dart:18:9: Error: Not a const constructor.
const NotConstant();
^";
invalid-expression "pkg/front_end/testcases/magic_const.dart:19:3: Error: The keyword 'const' or 'new' is required here. Due to an implementation limit, the compiler isn't able to infer 'const' or 'new' here.
Constant();
^";
const dynamic x = const self::Constant::•();
invalid-expression "pkg/front_end/testcases/magic_const.dart:21:8: Error: The keyword 'const' or 'new' is required here. Due to an implementation limit, the compiler isn't able to infer 'const' or 'new' here.
bool.fromEnvironment(\"fisk\");
^";
const dynamic b = const core::bool::fromEnvironment("fisk");
}
static method main() dynamic {}