Files
rust/tests/ui/unstable-feature-bound/unstable_inherent_method.stderr
2025-07-15 13:48:29 +00:00

21 lines
640 B
Plaintext

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