50cda7c5e3
Change-Id: Ie106341331f685650ac886f4b00218b806644ed5 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/188722 Commit-Queue: Johnni Winther <johnniwinther@google.com> Reviewed-by: Dmitry Stefantsov <dmitryas@google.com>
49 lines
1.9 KiB
Plaintext
49 lines
1.9 KiB
Plaintext
library;
|
|
//
|
|
// Problems in library:
|
|
//
|
|
// pkg/front_end/testcases/general/bug21938.dart:8:4: Error: The method 'call' isn't defined for the class 'Object'.
|
|
// - 'Object' is from 'dart:core'.
|
|
// Try correcting the name to the name of an existing method, or defining a method named 'call'.
|
|
// x();
|
|
// ^
|
|
//
|
|
// pkg/front_end/testcases/general/bug21938.dart:9:4: Error: The method 'call' isn't defined for the class 'Object'.
|
|
// - 'Object' is from 'dart:core'.
|
|
// Try correcting the name to the name of an existing method, or defining a method named 'call'.
|
|
// x(3);
|
|
// ^
|
|
//
|
|
// pkg/front_end/testcases/general/bug21938.dart:11:5: Error: The method 'call' isn't defined for the class 'Object'.
|
|
// - 'Object' is from 'dart:core'.
|
|
// Try correcting the name to the name of an existing method, or defining a method named 'call'.
|
|
// x.call();
|
|
// ^^^^
|
|
//
|
|
import self as self;
|
|
import "dart:core" as core;
|
|
|
|
static method test() → dynamic {
|
|
core::Object* x;
|
|
core::Function* f;
|
|
invalid-expression "pkg/front_end/testcases/general/bug21938.dart:8:4: Error: The method 'call' isn't defined for the class 'Object'.
|
|
- 'Object' is from 'dart:core'.
|
|
Try correcting the name to the name of an existing method, or defining a method named 'call'.
|
|
x();
|
|
^";
|
|
invalid-expression "pkg/front_end/testcases/general/bug21938.dart:9:4: Error: The method 'call' isn't defined for the class 'Object'.
|
|
- 'Object' is from 'dart:core'.
|
|
Try correcting the name to the name of an existing method, or defining a method named 'call'.
|
|
x(3);
|
|
^";
|
|
f.call(5, 2);
|
|
invalid-expression "pkg/front_end/testcases/general/bug21938.dart:11:5: Error: The method 'call' isn't defined for the class 'Object'.
|
|
- 'Object' is from 'dart:core'.
|
|
Try correcting the name to the name of an existing method, or defining a method named 'call'.
|
|
x.call();
|
|
^^^^";
|
|
f.call;
|
|
f.call(5, 2);
|
|
}
|
|
static method main() → dynamic {}
|