blob: 3edde574c2660bb0533017e048c68a3e414d4268 [file] [log] [blame]
#![feature(fn_ptr_trait)]
//@ check-pass
use std::marker::FnPtr;
trait Foo {}
impl<T> Foo for Vec<T> where T: FnPtr {}
fn main() {}