mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
10 lines
135 B
Rust
10 lines
135 B
Rust
|
#![feature(fn_ptr_trait)]
|
||
|
//@ check-pass
|
||
|
|
||
|
use std::marker::FnPtr;
|
||
|
|
||
|
trait Foo {}
|
||
|
impl<T> Foo for Vec<T> where T: FnPtr {}
|
||
|
|
||
|
fn main() {}
|