We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c477ff1 commit fcbb3ddCopy full SHA for fcbb3dd
src/test/pretty/issue_12590_c.pp
@@ -1,3 +1,9 @@
1
+#![feature(prelude_import)]
2
+#![no_std]
3
+#[prelude_import]
4
+use std::prelude::v1::*;
5
+#[macro_use]
6
+extern crate std;
7
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
8
// file at the top-level directory of this distribution and at
9
// http://rust-lang.org/COPYRIGHT.
@@ -8,17 +14,15 @@
14
// option. This file may not be copied, modified, or distributed
15
// except according to those terms.
10
16
11
-// pp-exact:issue_12590_c.pp
17
+// pretty-compare-only
12
18
// pretty-mode:expanded
19
+// pp-exact:issue_12590_c.pp
13
20
21
// The next line should be expanded
22
23
mod issue_12590_b {
24
-
- fn b() { }
- fn main() { }
25
+ fn b() { }
26
+ fn main() { }
27
}
28
fn main() { }
0 commit comments