Sign in
gnu
/
gcc.git
/
refs/heads/trunk
/
.
/
gcc
/
testsuite
/
rust
/
compile
/
torture
/
raw_identifiers.rs
blob: 0891779a36c01f5d895d895646a91ef95346c831 [
file
]
#![
feature
(
no_core
)]
#![
no_core
]
pub
fn
square
(
num
:
i32
)
->
i32
{
r
#
num
*
num
}
pub
fn
kimchi
()
->
i32
{
// UTF-8 raw indentifiers
let
r
#김치
=
1
;
let
r
#泡菜
=
1
;
let
r
#кимчи
=
1
;
r
#김치
+
r
#泡菜
+
r
#кимчи
}