summary refs log tree commit diff
path: root/tests/ui/consts/control-flow/try.stderr
blob: 62a3e3ce6bc33b0062f880eac21504c07637ff1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
error[E0015]: `?` is not allowed on `Option<i32>` in constant functions
  --> $DIR/try.rs:6:5
   |
LL |     x?;
   |     ^^
   |
   = note: calls in constant functions are limited to constant functions, tuple structs and tuple variants

error[E0015]: `?` is not allowed on `Option<i32>` in constant functions
  --> $DIR/try.rs:6:5
   |
LL |     x?;
   |     ^^
   |
   = note: calls in constant functions are limited to constant functions, tuple structs and tuple variants

error: aborting due to 2 previous errors

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