mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
9 lines
190 B
Rust
9 lines
190 B
Rust
// check-pass
|
|
#![allow(dead_code)]
|
|
struct Function<T, F> { t: T, f: F }
|
|
|
|
impl<T, R> Function<T, fn() -> R> { fn foo() { } }
|
|
impl<T, R> Function<T, fn() -> R> { fn bar() { } }
|
|
|
|
fn main() { }
|