blob: 32744592d7f4ed2441d840ef58fdab934e0f9149 [file] [log] [blame]
library /*isNonNullableByDefault*/;
//
// 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");
}