| David Tolnay | cf96664 | 2020-05-11 19:32:44 -0700 | [diff] [blame] | 1 | error: unexpected token |
| 2 | --> $DIR/include.rs:4:28 |
| 3 | | |
| 4 | 4 | include!("path/to" what); |
| 5 | | ^^^^ |
| 6 | |
| 7 | error: unexpected token |
| 8 | --> $DIR/include.rs:5:28 |
| 9 | | |
| 10 | 5 | include!(<path/to> what); |
| 11 | | ^^^^ |
| 12 | |
| 13 | error: expected `>` |
| 14 | --> $DIR/include.rs:6:17 |
| 15 | | |
| 16 | 6 | include!(<path/to); |
| 17 | | ^^^^^^^^^^ |
| 18 | |
| 19 | error: unexpected token in include path |
| 20 | --> $DIR/include.rs:7:23 |
| 21 | | |
| 22 | 7 | include!(<path[to]>); |
| 23 | | ^^^^ |
| 24 | |
| 25 | error: expected "quoted/path/to" or <bracketed/path/to> |
| 26 | --> $DIR/include.rs:8:18 |
| 27 | | |
| 28 | 8 | include!(...); |
| 29 | | ^^^ |