summaryrefslogtreecommitdiffstats
path: root/tests/ui/structs/incomplete-fn-in-struct-definition.stderr
blob: 0d12ba9c91688b316a77012424607cacbb88aadb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error: expected identifier, found keyword `fn`
  --> $DIR/incomplete-fn-in-struct-definition.rs:4:5
   |
LL | struct S {
   |        - while parsing this struct
LL |     fn: u8
   |     ^^ expected identifier, found keyword
   |
help: escape `fn` to use it as an identifier
   |
LL |     r#fn: u8
   |     ++

error: aborting due to previous error