Skip to content

Commit 1dc3cb0

Browse files

File tree

5 files changed

+88
-0
lines changed

5 files changed

+88
-0
lines changed

ices/100771.sh

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
#!/bin/bash
2+
3+
rustc -Zextra-const-ub-checks - <<'EOF'
4+
5+
#[derive(PartialEq, Eq, Copy, Clone)]
6+
#[repr(packed)]
7+
struct Foo {
8+
field: (i64, u32, u32, u32),
9+
}
10+
11+
const FOO: Foo = Foo {
12+
field: (5, 6, 7, 8),
13+
};
14+
15+
fn main() {
16+
match FOO {
17+
Foo { field: (5, 6, 7, 8) } => {},
18+
FOO => unreachable!(), //~ WARNING unreachable pattern
19+
_ => unreachable!(),
20+
}
21+
}
22+
23+
EOF
24+

ices/100772.sh

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/bash
2+
3+
rustc -Clto -Zsanitizer=cfi - <<'EOF'
4+
5+
#![feature(allocator_api)]
6+
7+
fn main() {
8+
Box::new_in(&[0, 1], &std::alloc::Global);
9+
}
10+
11+
EOF
12+

ices/100778.sh

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
#!/bin/bash
2+
3+
rustc -Clto -Zsanitizer=cfi - <<'EOF'
4+
5+
#![feature(adt_const_params, generic_const_exprs)]
6+
#![allow(incomplete_features)]
7+
8+
pub type Matrix = [usize; 1];
9+
const EMPTY_MATRIX: Matrix = [0; 1];
10+
11+
pub struct Walk<const REMAINING: Matrix> { }
12+
13+
impl Walk<EMPTY_MATRIX> {
14+
pub const fn new() -> Self {
15+
Self {}
16+
}
17+
}
18+
19+
fn main() {
20+
let _ = Walk::new();
21+
}
22+
23+
EOF
24+

ices/100783.sh

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#!/bin/bash
2+
3+
rustc -Cdebuginfo=2 -Zsanitizer=cfi -Clto - <<'EOF'
4+
5+
// run-pass
6+
trait Stream { type Item; }
7+
impl<'a> Stream for &'a str { type Item = u8; }
8+
fn f<'s>(s: &'s str) -> (&'s str, <&'s str as Stream>::Item) {
9+
(s, 42)
10+
}
11+
12+
fn main() {
13+
let fx = f as for<'t> fn(&'t str) -> (&'t str, <&'t str as Stream>::Item);
14+
assert_eq!(fx("hi"), ("hi", 42));
15+
}
16+
17+
18+
EOF
19+

ices/100818.rs

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#![feature(type_alias_impl_trait)]
2+
use std::future::Future;
3+
4+
fn main() {
5+
type SomeFuture<'t> = impl 't + Future<Output = ()>;
6+
type SomeClosure = impl for<'t> FnOnce(&'t str) -> SomeFuture<'t>;
7+
fn coerce_closure(f: SomeClosure) {}
8+
coerce_closure(|x: &str| async move {});
9+
}

0 commit comments

Comments
 (0)