Files
rust/tests/ui/generics/box-missing-generics-14092.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
149 B
Rust
Raw Normal View History

2025-07-24 17:52:22 +05:00
//! Regression test for https://github.com/rust-lang/rust/issues/14092
fn fn1(0: Box) {}
//~^ ERROR missing generics for struct `Box`
fn main() {}