Avoid matching type in huge-struct test error annotation

The concrete type that will be too big is target dependent. Avoid
matching it in error annotation to make test work correctly across
different targets.
This commit is contained in:
Tomasz Miąsko 2019-10-29 00:00:00 +00:00
parent d200a3f7ec
commit 6be770150b

View File

@ -47,6 +47,6 @@ struct S1M<T> { val: S1k<S1k<T>> }
fn main() {
let fat: Option<S1M<S1M<S1M<u32>>>> = None;
//~^ ERROR the type `S32<S1M<S1M<u32>>>` is too big for the current architecture
//~^ ERROR is too big for the current architecture
}