We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5676823 commit c8e23d8Copy full SHA for c8e23d8
src/test/ui/consts/std/cell.rs
@@ -27,4 +27,4 @@ unsafe impl<T> Sync for Wrap<T> {}
27
28
static BAR_PTR: Wrap<*mut u32> = Wrap(BAR.0.get());
29
30
-fn main() {}
+fn main() {}
src/test/ui/consts/std/char.rs
@@ -6,4 +6,4 @@ static Y: bool = 'ä'.is_ascii();
6
fn main() {
7
assert!(X);
8
assert!(!Y);
9
-}
+}
src/test/ui/consts/std/iter.rs
@@ -6,4 +6,4 @@ fn main() {
for i in I {
panic!("magical value creation: {}", i);
}
src/test/ui/consts/std/slice.rs
@@ -7,4 +7,4 @@ unsafe impl<T> Sync for Wrap<T> {}
static FOO: Wrap<*const u32> = Wrap([42, 44, 46].as_ptr());
static BAR: Wrap<*const u8> = Wrap("hello".as_ptr());
10
0 commit comments