Sign in
◑
Theme
rust
/
rust
/
0ae3fd93a3a91460c1957fa38fa9514decbcdf23
/
.
/
tests
/
ui
/
const-generics
/
struct-with-invalid-const-param.rs
blob: 89f4c83454d89c4494ec410d53ebc06624ff2c84 [
file
]
// Checks that a const param cannot be stored in a struct.
struct
S
<
const
C
:
u8
>(
C
);
//~ ERROR cannot find type `C` in this scope
fn
main
()
{}