mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-28 23:41:42 +00:00
10 lines
161 B
Rust
10 lines
161 B
Rust
//@ check-pass
|
|
// Check that it doesn't panic when `Input` gets its visibility checked.
|
|
|
|
#![crate_type = "lib"]
|
|
|
|
pub trait Layer<
|
|
/// Hello.
|
|
Input,
|
|
> {}
|