aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/issue-1005.rs
blob: 15d4bef08c2af8842bd0eb180ad95e28f8f843ef (plain)
1
2
3
4
5
6
7
// { dg-additional-options "-w" }
#[lang = "sized"]
pub trait Sized {}

impl<T> *const T {
    fn test(self) {}
}