wchar 0.11.1

Procedural macros for compile time UTF-16 and UTF-32 wide strings.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[cfg_attr(any(miri, not(unix)), ignore)]
#[rustversion::attr(not(nightly), ignore)]
#[test]
fn ui() {
    let t = trybuild::TestCases::new();
    t.compile_fail("tests/ui/*.rs");

    if cfg!(feature = "unstable") {
        t.compile_fail("tests/ui_unstable/*.rs");
    }
}