mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 18:24:04 +00:00
10 lines
205 B
Rust
10 lines
205 B
Rust
#![feature(rustc_attrs)]
|
|
|
|
#[rustc_has_incoherent_inherent_impls]
|
|
pub struct StructWithAttr;
|
|
pub struct StructNoAttr;
|
|
|
|
#[rustc_has_incoherent_inherent_impls]
|
|
pub enum EnumWithAttr {}
|
|
pub enum EnumNoAttr {}
|