diff options
| author | Simon Sapin <simon.sapin@exyr.org> | 2014-06-18 00:40:57 +0200 |
|---|---|---|
| committer | Simon Sapin <simon.sapin@exyr.org> | 2014-06-18 00:47:20 +0200 |
| commit | 3744d828513092d1ed64c4c6f8cd2536f7a5ff0d (patch) | |
| tree | ad37386a7791e4bebf6bd292f42c2090d7512fa8 | |
| parent | 8de2618182f14bb2245e8e89f171aaf9b2f29690 (diff) | |
| download | rust-3744d828513092d1ed64c4c6f8cd2536f7a5ff0d.tar.gz rust-3744d828513092d1ed64c4c6f8cd2536f7a5ff0d.zip | |
Fix expected error message in a test.
The change is a result of the char/string parsing refactor.
| -rw-r--r-- | src/test/compile-fail/lex-unknown-str-escape.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/compile-fail/lex-unknown-str-escape.rs b/src/test/compile-fail/lex-unknown-str-escape.rs index f7809b02b0b..9a59c422711 100644 --- a/src/test/compile-fail/lex-unknown-str-escape.rs +++ b/src/test/compile-fail/lex-unknown-str-escape.rs @@ -9,5 +9,5 @@ // except according to those terms. static s: &'static str = - "\●" //~ ERROR: unknown string escape + "\●" //~ ERROR: unknown character escape ; |
