mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
11 lines
340 B
Plaintext
11 lines
340 B
Plaintext
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 1 previous error
|
|
|