]> git.lizzy.rs Git - rust.git/blobdiff - tests/compile-fail/backtrace/bad-backtrace-decl.rs
Add an `fn_ptr` field to `MiriFrame`
[rust.git] / tests / compile-fail / backtrace / bad-backtrace-decl.rs
index b9f1c779ae23277377acab99fc60946b989e6618..23379992d5ecb535b16c32833508deb20c79ec00 100644 (file)
@@ -7,7 +7,7 @@ fn main() {
     let frames = unsafe { miri_get_backtrace(0) };
     for frame in frames.into_iter() {
         unsafe {
-            miri_resolve_frame(*frame, 0); //~ ERROR Undefined Behavior: bad declaration of miri_resolve_frame - should return a struct with 4 fields
+            miri_resolve_frame(*frame, 0); //~ ERROR Undefined Behavior: bad declaration of miri_resolve_frame - should return a struct with 5 fields
         }
     }
 }