blob: 5c448ec8970921741cfd1271a56046818fa91416 [file] [log] [blame]
library;
//
// Problems in library:
//
// pkg/front_end/testcases/rasta/bad_unicode.dart:6:10: Error: An escape sequence starting with '\u' must be followed by 4 hexadecimal digits.
// print("\u00"); // Bad Unicode escape, must have 4 hex digits.
// ^^^^
//
import self as self;
import "dart:core" as core;
static method main() dynamic {
core::print("\\u00");
}