20 lines
212 B
Rust
20 lines
212 B
Rust
|
// check-pass
|
||
|
|
||
|
#![feature(non_lifetime_binders)]
|
||
|
//~^ WARN is incomplete and may not be safe
|
||
|
|
||
|
pub fn foo()
|
||
|
where
|
||
|
for<V> V: Sized,
|
||
|
{
|
||
|
bar();
|
||
|
}
|
||
|
|
||
|
pub fn bar()
|
||
|
where
|
||
|
for<V> V: Sized,
|
||
|
{
|
||
|
}
|
||
|
|
||
|
pub fn main() {}
|