Sign in
fuchsia
/
third_party
/
rust
/
972fef232ec0dd7a3f42091aa6f36cd68aeb3eef
/
.
/
tests
/
ui
/
macros
/
issue-104769-concat_bytes-invalid-literal.rs
blob: 24150376ef0b7e5b9d3480f26ad93354be30dccf [
file
] [
log
] [
blame
]
#![
feature
(
concat_bytes
)]
fn
main
()
{
concat_bytes
!(
7Y
);
//~^ ERROR invalid suffix `Y` for number literal
concat_bytes
!(
888888888888888888888888888888888888888
);
//~^ ERROR integer literal is too large
}