]> git.lizzy.rs Git - rust.git/commitdiff
huge-enum also exhibits this error
authorRalf Jung <post@ralfj.de>
Sun, 14 Apr 2019 08:24:49 +0000 (10:24 +0200)
committerRalf Jung <post@ralfj.de>
Sun, 14 Apr 2019 08:24:49 +0000 (10:24 +0200)
src/test/ui/huge-enum.rs

index 71c8fd55b23f3711bd4a5898f4e4c69c5653bc6e..2492afbdc8f8180605090fe34649ea5c2315a3eb 100644 (file)
@@ -1,6 +1,10 @@
 // normalize-stderr-test "std::option::Option<\[u32; \d+\]>" -> "TYPE"
 // normalize-stderr-test "\[u32; \d+\]" -> "TYPE"
 
+// FIXME https://github.com/rust-lang/rust/issues/59774
+// normalize-stderr-test "thread.*panicked.*Metadata module not compiled.*\n" -> ""
+// normalize-stderr-test "note:.*RUST_BACKTRACE=1.*\n" -> ""
+
 #[cfg(target_pointer_width = "32")]
 fn main() {
     let big: Option<[u32; (1<<29)-1]> = None;