summaryrefslogtreecommitdiffstats
path: root/src/test/ui/inline-const/const-expr-generic-err2.stderr
blob: 00b716cd25965da94bde26294fa0065da3605db8 (plain)
1
2
3
4
5
6
7
8
9
10
error: constant expression depends on a generic parameter
  --> $DIR/const-expr-generic-err2.rs:4:19
   |
LL |     let _ = [0u8; const { std::mem::size_of::<T>() }];
   |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: this may fail depending on what value the parameter takes

error: aborting due to previous error