Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
issues
/
issue-32950.rs
blob: 27d68a11c1f160d6e456c2c6d9ba3691d6d7e766 [
file
] [
log
] [
blame
]
#![
feature
(
concat_idents
)]
#[
derive
(
Debug
)]
struct
Baz
<
T
>(
concat_idents
!(
Foo
,
Bar
)
//~ ERROR `derive` cannot be used on items with type macros
//~^ ERROR cannot find type `FooBar` in this scope
);
fn
main
()
{}