blob: 1280dd9c04cfccef1449302774ab0ad27dff89f5 [file] [log] [blame]
// Formatted problems:
//
// pkg/front_end/testcases/regress/issue_35213.dart:5:9: Error: Expected ',' before this.
// f(int a int b) { }
// ^^^
// Unhandled errors:
//
// pkg/front_end/testcases/regress/issue_35213.dart:5:9: Error: Expected ',' before this.
// f(int a int b) { }
// ^^^
library;
import self as self;
import "dart:core" as core;
static method f(core::int a, core::int b) dynamic {}
static method main() dynamic {
self::f(2, 3);
}