1
1
mirror of https://github.com/casey/just.git synced 2024-09-17 17:09:39 +03:00
just/tests/multibyte_char.rs
Casey Rodarmor c625d61abd
Fix multibyte codepoint crash (#1243)
Co-authored-by: Evan Richter <evanjrichter@gmail.com>
2022-06-21 00:24:13 +00:00

7 lines
92 B
Rust

use super::*;
#[test]
fn bugfix() {
Test::new().justfile("foo:\nx := '''ǩ'''").run();
}