| 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"); | |
| } |