rust/tests/ui/lexer/lex-bad-char-literals-3.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
197 B
Rust
Raw Normal View History

2019-01-19 23:59:10 -06:00
static c: char = '';
2019-01-19 23:53:28 -06:00
//~^ ERROR: character literal may only contain one codepoint
2019-01-17 14:24:17 -06:00
fn main() {
2019-01-19 23:53:28 -06:00
let ch: &str = '';
//~^ ERROR: character literal may only contain one codepoint
2019-01-17 14:24:17 -06:00
}