add test suit

This commit is contained in:
togami2864 2021-11-26 18:34:07 +09:00
parent 35b0f2438d
commit 140ba610e4

View File

@ -20,8 +20,16 @@ fn uni() {
print!("\u{DC}ben!"); // this is ok
}
// issue 8013
#[warn(clippy::non_ascii_literal)]
fn single_quote() {
const _EMPTY_BLOCK: char = '▱';
const _FULL_BLOCK: char = '▰';
}
fn main() {
zero();
uni();
canon();
single_quote();
}