]> git.proxmox.com Git - rustc.git/blame - src/test/ui/feature-gates/feature-gate-deprecated_safe.rs
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / ui / feature-gates / feature-gate-deprecated_safe.rs
CommitLineData
5e7ed085
FG
1#[deprecated_safe(since = "TBD", note = "...")] //~ ERROR: the `#[deprecated_safe]` attribute is an experimental feature
2unsafe fn deprecated_safe_fn() {}
3
4#[deprecated_safe(since = "TBD", note = "...")] //~ ERROR: the `#[deprecated_safe]` attribute is an experimental feature
5unsafe trait DeprecatedSafeTrait {}
6
7fn main() {}