blob: d82f6ab777875bbc760e515f8d1e5851e2a8dad1 [file] [log] [blame]
library;
//
// Problems in library:
//
// pkg/front_end/testcases/general/script_tag_in_part_file.dart:1:1: Error: A part file cannot have script tag.
// Try removing the script tag or the 'part of' directive.
// #!/usr/bin/env dart
// ^
//
import self as self;
import "dart:core" as core;
part script_tag_in_part_file.dart;
static method /* from org-dartlang-testcase:///script_tag_in_part_file.dart */ run() void
return core::print("Running!");
static method main() void
return self::run();