mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
12 lines
254 B
Rust
12 lines
254 B
Rust
// check-fail
|
|
// Ensure we don't error when emitting trait bound not satisfied when self type
|
|
// has late bound var
|
|
|
|
fn main() {
|
|
test(&|| 0); //~ ERROR the trait bound
|
|
}
|
|
|
|
trait Trait {}
|
|
|
|
fn test<T>(arg: &impl Fn() -> T) where for<'a> &'a T: Trait {}
|