Sign in
rust
/
rust-lang
/
rust
/
refs/heads/try
/
.
/
tests
/
ui
/
attributes
/
invalid-reprs.rs
blob: 95ed14b549163e6575e7637dfd3b0ce679da9366 [
file
] [
log
] [
blame
]
fn
main
()
{
let
y
=
#[
repr
(
uwu
(
4
))]
//~^ ERROR attributes on expressions are experimental
//~| ERROR unrecognized representation hint
(&
id
(
5
));
//~ ERROR: cannot find function `id` in this scope
}