mirror of https://github.com/rust-lang/rust.git
15 lines
405 B
Plaintext
15 lines
405 B
Plaintext
error: only functions, statics, and consts can define opaque types
|
|
--> $DIR/define-via-extern.rs:6:5
|
|
|
|
|
LL | #[define_opaque(Hi)] fn foo();
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: only functions, statics, and consts can define opaque types
|
|
--> $DIR/define-via-extern.rs:9:5
|
|
|
|
|
LL | #[define_opaque(Hi)] static HI: Hi;
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|