summaryrefslogtreecommitdiffstats
path: root/tests/ui/dyn-star/align.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/dyn-star/align.rs')
-rw-r--r--tests/ui/dyn-star/align.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/dyn-star/align.rs b/tests/ui/dyn-star/align.rs
index fb41a05a0..6679997a9 100644
--- a/tests/ui/dyn-star/align.rs
+++ b/tests/ui/dyn-star/align.rs
@@ -13,5 +13,5 @@ struct AlignedUsize(usize);
fn main() {
let x = AlignedUsize(12) as dyn* Debug;
- //[over_aligned]~^ ERROR `AlignedUsize` needs to be a pointer-sized type
+ //[over_aligned]~^ ERROR `AlignedUsize` needs to have the same alignment and size as a pointer
}