2019-09-19 12:48:30 -05:00
|
|
|
warning: the feature `raw_dylib` is incomplete and may cause the compiler to crash
|
|
|
|
--> $DIR/link-ordinal-too-large.rs:1:12
|
|
|
|
|
|
|
|
|
LL | #![feature(raw_dylib)]
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `#[warn(incomplete_features)]` on by default
|
|
|
|
|
|
|
|
error: ordinal value in `link_ordinal` is too large: `18446744073709551616`
|
|
|
|
--> $DIR/link-ordinal-too-large.rs:6:5
|
|
|
|
|
|
|
|
|
LL | #[link_ordinal(18446744073709551616)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2020-04-06 16:09:56 -05:00
|
|
|
= note: the value may not exceed `usize::MAX`
|
2019-09-19 12:48:30 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|