edafbaffb2
- Either explicitly annotate `let x: () = expr;` where `x` has unit type, or remove the unit binding to leave only `expr;` instead. - Fix disjoint-capture-in-same-closure test
15 lines
147 B
Rust
15 lines
147 B
Rust
// check-pass
|
|
|
|
trait T<const A: usize> {
|
|
fn f();
|
|
}
|
|
struct S;
|
|
|
|
impl T<0usize> for S {
|
|
fn f() {}
|
|
}
|
|
|
|
fn main() {
|
|
<S as T<0usize>>::f();
|
|
}
|