blob: ef7a4f53da68d273bee7c0d34e71620d1e360dcc [file] [log] [blame]
library;
//
// Problems in library:
//
// pkg/front_end/testcases/regress/issue_33452.dart:10:29: Error: Method not found: 'ExistingClass.nonExistingConstructor'.
// var x = new ExistingClass.nonExistingConstructor();
// ^^^^^^^^^^^^^^^^^^^^^^
//
// pkg/front_end/testcases/regress/issue_33452.dart:11:11: Error: Method not found: 'ExistingClass'.
// x = new ExistingClass();
// ^^^^^^^^^^^^^
//
// pkg/front_end/testcases/regress/issue_33452.dart:12:11: Error: Method not found: 'ExistingClass'.
// x = new ExistingClass<String>();
// ^^^^^^^^^^^^^
//
// pkg/front_end/testcases/regress/issue_33452.dart:13:33: Error: Method not found: 'ExistingClass.nonExistingConstructor'.
// x = new ExistingClass<String>.nonExistingConstructor();
// ^^^^^^^^^^^^^^^^^^^^^^
//
// pkg/front_end/testcases/regress/issue_33452.dart:14:41: Error: Method not found: 'ExistingClass.nonExistingConstructor'.
// x = new ExistingClass<String, String>.nonExistingConstructor();
// ^^^^^^^^^^^^^^^^^^^^^^
//
// pkg/front_end/testcases/regress/issue_33452.dart:15:11: Error: Method not found: 'NonExistingClass'.
// x = new NonExistingClass();
// ^^^^^^^^^^^^^^^^
//
import self as self;
import "dart:core" as core;
class ExistingClass extends core::Object {
constructor existingConstructor() self::ExistingClass
: super core::Object::•()
;
}
static method main() dynamic {
dynamic x = invalid-expression "pkg/front_end/testcases/regress/issue_33452.dart:10:29: Error: Method not found: 'ExistingClass.nonExistingConstructor'.
var x = new ExistingClass.nonExistingConstructor();
^^^^^^^^^^^^^^^^^^^^^^";
x = invalid-expression "pkg/front_end/testcases/regress/issue_33452.dart:11:11: Error: Method not found: 'ExistingClass'.
x = new ExistingClass();
^^^^^^^^^^^^^";
x = invalid-expression "pkg/front_end/testcases/regress/issue_33452.dart:12:11: Error: Method not found: 'ExistingClass'.
x = new ExistingClass<String>();
^^^^^^^^^^^^^";
x = invalid-expression "pkg/front_end/testcases/regress/issue_33452.dart:13:33: Error: Method not found: 'ExistingClass.nonExistingConstructor'.
x = new ExistingClass<String>.nonExistingConstructor();
^^^^^^^^^^^^^^^^^^^^^^";
x = invalid-expression "pkg/front_end/testcases/regress/issue_33452.dart:14:41: Error: Method not found: 'ExistingClass.nonExistingConstructor'.
x = new ExistingClass<String, String>.nonExistingConstructor();
^^^^^^^^^^^^^^^^^^^^^^";
x = invalid-expression "pkg/front_end/testcases/regress/issue_33452.dart:15:11: Error: Method not found: 'NonExistingClass'.
x = new NonExistingClass();
^^^^^^^^^^^^^^^^";
}