Sign in
pigweed
/
third_party
/
github
/
bazelbuild
/
rules_rust
/
350d249ca2c976f92c96d63e4f89f9cf00965188
/
.
/
test
/
renamed_deps
/
mod1.rs
blob: a66f490afbd15e0b61ed2f13a7bf5d84c8d87084 [
file
] [
log
] [
blame
]
pub
fn
world
()
->
String
{
"world"
.
to_owned
()
}
#[
cfg
(
test
)]
mod
test
{
#[
test
]
fn
test_world
()
{
assert_eq
!(
super
::
world
(),
"world"
);
}
}