Sign in
android
/
toolchain
/
rustc
/
ff3f07ae99a30006dd85b9d73084edd9355c9db6
/
.
/
src
/
test
/
ui
/
custom-derive
/
derive-in-mod.rs
blob: 8478ff1a6ae6c7616833547b4f4323bd5a1a6a18 [
file
] [
log
] [
blame
]
// compile-pass
// aux-build:plugin.rs
extern
crate plugin
;
mod
inner
{
use
plugin
::
WithHelper
;
#[
derive
(
WithHelper
)]
struct
S
;
}
fn
main
()
{}