We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3f2dfd commit 424fa43Copy full SHA for 424fa43
src/test/run-pass/backtrace.rs
@@ -8,6 +8,8 @@
8
// option. This file may not be copied, modified, or distributed
9
// except according to those terms.
10
11
+#![feature(rustc_attrs)]
12
+
13
// no-pretty-expanded FIXME #15189
14
// ignore-android FIXME #17520
15
// compile-flags:-g
@@ -16,6 +18,8 @@ use std::env;
16
18
use std::process::{Command, Stdio};
17
19
use std::str;
20
21
+// FIXME #31005 MIR missing debuginfo currently.
22
+#[cfg_attr(target_env = "msvc", rustc_no_mir)]
23
#[inline(never)]
24
fn foo() {
25
let _v = vec![1, 2, 3];
@@ -24,6 +28,8 @@ fn foo() {
28
}
29
26
30
31
32
27
33
34
fn double() {
35
struct Double;
0 commit comments