summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/mismatched-braces/missing-close-brace-in-trait.stderr
blob: 7c6254356e0774be199e69435119fbc6f47d53df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
error: this file contains an unclosed delimiter
  --> $DIR/missing-close-brace-in-trait.rs:12:65
   |
LL | trait T {
   |         - unclosed delimiter
...
LL | fn main() {}
   |                                                                 ^

error: struct is not supported in `trait`s or `impl`s
  --> $DIR/missing-close-brace-in-trait.rs:4:1
   |
LL | pub(crate) struct Bar<T>();
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: consider moving the struct out to a nearby module scope

error: implementation is not supported in `trait`s or `impl`s
  --> $DIR/missing-close-brace-in-trait.rs:7:1
   |
LL | impl T for Bar<usize> {
   | ^^^^^^^^^^^^^^^^^^^^^
   |
   = help: consider moving the implementation out to a nearby module scope

error: aborting due to 3 previous errors