summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/issue_5668.rs
blob: bbd9a530b81c0d149dbc21d0e2fda009ad1f49cc (plain)
1
2
3
4
5
6
7
8
type Foo = impl Send;
struct Struct<
    const C: usize = {
        let _: Foo = ();
        //~^ ERROR: mismatched types
        0
    },
>;