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