Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
rust
/
compile
/
torture
/
array_function.rs
blob: 252593c292fbcd9f5359f8337119658a08861290 [
file
] [
log
] [
blame
]
#![
feature
(
no_core
)]
#![
no_core
]
fn
foo
()
->
i32
{
1
}
fn
main
()
{
let
_a
:
[
i32
;
1
]
=
[
foo
()];
}