mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-05 14:37:37 +00:00
10 lines
190 B
Rust
10 lines
190 B
Rust
![]() |
struct Struct<T>(T);
|
||
|
|
||
|
impl<T> Struct<T> {
|
||
|
const CONST: fn() = || {
|
||
|
struct _Obligation where T:; //~ ERROR can't use generic parameters from outer function
|
||
|
};
|
||
|
}
|
||
|
|
||
|
fn main() {}
|