Files
rust/tests/ui/unstable-feature-bound/unstable_inherent_method.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
640 B
Plaintext
Raw Normal View History

2025-07-14 13:30:36 +00:00
error: attribute should be applied to `impl` or free function outside of any `impl` or trait
--> $DIR/unstable_inherent_method.rs:11:5
|
LL | #[unstable_feature_bound(foo)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
LL |
LL | fn foo();
| --------- not an `impl` or free function
error: attribute should be applied to `impl` or free function outside of any `impl` or trait
--> $DIR/unstable_inherent_method.rs:18:5
|
LL | #[unstable_feature_bound(foo)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
LL |
LL | fn foo() {}
| ----------- not an `impl` or free function
error: aborting due to 2 previous errors