about summary refs log tree commit diff
path: root/tests/ui/impl-trait/define-via-extern.stderr
blob: 4a0ca5edd47d011ddce89566ae71c88eb81cf5ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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