Sign in
rust
/
rust
/
HEAD
/
.
/
tests
/
rustdoc-html
/
auxiliary
/
remapped-paths.rs
blob: b361c012bc238e4cd159929ae7fe7e3ba081c5a5 [
file
]
//@ compile-flags:--remap-path-prefix={{src-base}}=
pub
struct
MyStruct
{
field
:
u32
,
}
impl
MyStruct
{
pub
fn
new
()
->
MyStruct
{
MyStruct
{
field
:
3
}
}
}