mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-26 21:37:47 +00:00
- Changes parser to allow application to inherent methods. - Adds tests to confirm extended functionality works just as the existing.
14 lines
326 B
Plaintext
14 lines
326 B
Plaintext
error: `Foo::bar` is incompatible with `#[rustc_force_inline]`
|
|
--> $DIR/inherent.rs:7:5
|
|
|
|
|
LL | #[rustc_force_inline]
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
...
|
|
LL | fn bar() {}
|
|
| -------- `Foo::bar` defined here
|
|
|
|
|
= note: incompatible due to: #[rustc_no_mir_inline]
|
|
|
|
error: aborting due to 1 previous error
|
|
|