aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/issue-3599.rs
blob: 1d29fac84e93d11ca6bfc1abb6f4895ecb1ad59f (plain)
1
2
3
4
5
6
7
8
#[lang = "sized"]
trait Sized {}

trait Bar {}

struct S; // { dg-warning "struct is never constructed" }

pub fn test(foo: impl Bar) {}