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> {}