From 218caa410aa38c29984be31a5229b9fa717560ee Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:13 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- .../marker-attribute-on-non-trait.rs | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 tests/ui/marker_trait_attr/marker-attribute-on-non-trait.rs (limited to 'tests/ui/marker_trait_attr/marker-attribute-on-non-trait.rs') diff --git a/tests/ui/marker_trait_attr/marker-attribute-on-non-trait.rs b/tests/ui/marker_trait_attr/marker-attribute-on-non-trait.rs new file mode 100644 index 000000000..0bf620934 --- /dev/null +++ b/tests/ui/marker_trait_attr/marker-attribute-on-non-trait.rs @@ -0,0 +1,23 @@ +#![feature(marker_trait_attr)] + +#[marker] //~ ERROR attribute should be applied to a trait +struct Struct {} + +#[marker] //~ ERROR attribute should be applied to a trait +impl Struct {} + +#[marker] //~ ERROR attribute should be applied to a trait +union Union { + x: i32, +} + +#[marker] //~ ERROR attribute should be applied to a trait +const CONST: usize = 10; + +#[marker] //~ ERROR attribute should be applied to a trait +fn function() {} + +#[marker] //~ ERROR attribute should be applied to a trait +type Type = (); + +fn main() {} -- cgit v1.2.3