Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
rust
/
compile
/
box_syntax.rs
blob: c63284b5163dfd49f29aa199c23909d58aada06c [
file
] [
log
] [
blame
]
// { dg-options "-fsyntax-only" }
#![
feature
(
box_syntax
)]
fn
main
()
{
let
x
:
Box
<
_
>
=
box
1
;
}