mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 14:40:37 +00:00
8 lines
219 B
Rust
8 lines
219 B
Rust
pub trait Arbitrary: Sized + 'static {}
|
|
|
|
impl<'a, A: Clone> Arbitrary for ::std::borrow::Cow<'a, A> {} //~ ERROR lifetime bound
|
|
//~^ ERROR cannot infer an appropriate lifetime for lifetime parameter `'a`
|
|
|
|
fn main() {
|
|
}
|