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 or from 1 to 6 digits between '{' and '}'. | |
// 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"); | |
} |