summary refs log tree commit diff
path: root/src/test/ui/const-generics/macro_rules-braces.min.stderr
blob: 1fe18e3fc0231c03616aa291851476da25862647 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
error: expressions must be enclosed in braces to be used as const generic arguments
  --> $DIR/macro_rules-braces.rs:34:17
   |
LL |     let _: baz!(N);
   |                 ^
   |
help: enclose the `const` expression in braces
   |
LL |     let _: baz!({ N });
   |                 ^   ^

error: generic parameters may not be used in const operations
  --> $DIR/macro_rules-braces.rs:31:20
   |
LL |     let _: foo!({{ N }});
   |                    ^ cannot perform const operation using `N`
   |
   = help: const parameters may only be used as standalone arguments, i.e. `N`

error: generic parameters may not be used in const operations
  --> $DIR/macro_rules-braces.rs:33:19
   |
LL |     let _: bar!({ N });
   |                   ^ cannot perform const operation using `N`
   |
   = help: const parameters may only be used as standalone arguments, i.e. `N`

error: generic parameters may not be used in const operations
  --> $DIR/macro_rules-braces.rs:36:20
   |
LL |     let _: baz!({{ N }});
   |                    ^ cannot perform const operation using `N`
   |
   = help: const parameters may only be used as standalone arguments, i.e. `N`

error: generic parameters may not be used in const operations
  --> $DIR/macro_rules-braces.rs:38:19
   |
LL |     let _: biz!({ N });
   |                   ^ cannot perform const operation using `N`
   |
   = help: const parameters may only be used as standalone arguments, i.e. `N`

error: aborting due to 5 previous errors