rust/tests/ui/closures/binder/disallow-ty.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
144 B
Rust
Raw Normal View History

#![feature(closure_lifetime_binder)]
fn main() {
for<T> || -> () {};
//~^ ERROR only lifetime parameters can be used in this context
}