aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/may_dangle.rs
blob: 6b81b53aa5966dc880221061b065ae604aa58d82 (plain)
1
2
3
4
5
6
7
8
9
10
// { dg-options "-fsyntax-only" }

#![feature(dropck_eyepatch)]
struct Test<T> {
    _inner: T,
}

trait Action {}

unsafe impl<#[may_dangle] T> Action for Test<T> {}