about summary refs log tree commit diff
path: root/tests/ui/generics/box-missing-generics-14092.rs
blob: 3570d5f675f336fb932b46064d2aafca725fbd1e (plain)
1
2
3
4
5
6
//! Regression test for https://github.com/rust-lang/rust/issues/14092

fn fn1(0: Box) {}
//~^ ERROR missing generics for struct `Box`

fn main() {}