summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lang-items/issue-87573.stderr
blob: 25560cfa0e6c72ce04c833b41bb50508a71a6068 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
error[E0718]: `drop_in_place` language item must be applied to a function with at least 1 generic argument
  --> $DIR/issue-87573.rs:20:1
   |
LL | #[lang = "drop_in_place"]
   | ^^^^^^^^^^^^^^^^^^^^^^^^^
LL |
LL | fn drop_fn() {
   |           - this function has 0 generic arguments

error[E0718]: `start` language item must be applied to a function with 1 generic argument
  --> $DIR/issue-87573.rs:26:1
   |
LL | #[lang = "start"]
   | ^^^^^^^^^^^^^^^^^
LL |
LL | fn start(){}
   |         - this function has 0 generic arguments

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0718`.