diff options
Diffstat (limited to 'tests/ui/feature-gates/feature-gate-deprecated_safe.rs')
-rw-r--r-- | tests/ui/feature-gates/feature-gate-deprecated_safe.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/ui/feature-gates/feature-gate-deprecated_safe.rs b/tests/ui/feature-gates/feature-gate-deprecated_safe.rs new file mode 100644 index 000000000..d5f4a4705 --- /dev/null +++ b/tests/ui/feature-gates/feature-gate-deprecated_safe.rs @@ -0,0 +1,7 @@ +#[deprecated_safe(since = "TBD", note = "...")] //~ ERROR: the `#[deprecated_safe]` attribute is an experimental feature +unsafe fn deprecated_safe_fn() {} + +#[deprecated_safe(since = "TBD", note = "...")] //~ ERROR: the `#[deprecated_safe]` attribute is an experimental feature +unsafe trait DeprecatedSafeTrait {} + +fn main() {} |