Skip to content

File tree

6 files changed

+92
-0
lines changed

6 files changed

+92
-0
lines changed

ices/100075.rs

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
trait Marker {}
2+
impl<T> Marker for T {}
3+
4+
fn maybe<T>(_t: T) ->
5+
Option<
6+
//removing the line below makes it compile
7+
&'static
8+
T> {
9+
None
10+
}
11+
12+
fn _g<T>(t: &'static T) -> &'static impl Marker {
13+
if let Some(t) = maybe(t) {
14+
return _g(t);
15+
}
16+
todo!()
17+
}
18+
19+
pub fn main() {}

ices/100103.rs

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#![feature(let_else)]
2+
fn main() {
3+
let Some(x) = Some(()) else {
4+
match Err(()) {
5+
Err(()) => return (),
6+
Ok(val) => val,
7+
}
8+
};
9+
}

ices/100114.rs

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#![allow(warnings)]
2+
#![feature(never_type)]
3+
#![allow(const_err)]
4+
5+
use std::mem::MaybeUninit;
6+
7+
const fn never() -> ! {
8+
unsafe { MaybeUninit::uninit().assume_init() }
9+
}
10+
11+
const NEVER: ! = never();
12+
13+
fn main() {}

ices/100143.sh

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
#!/bin/bash
2+
3+
cat > out.rs <<'EOF'
4+
5+
// struct Peekable<I: Iterator>
6+
use std::iter::Peekable;
7+
8+
pub struct Span<F: Fn(&i32)> {
9+
inner: Peekable<ConditionalIterator<F>>,
10+
}
11+
12+
struct ConditionalIterator<F> {
13+
f: F,
14+
}
15+
16+
impl<F: Fn(&i32)> Iterator for ConditionalIterator<F> {
17+
type Item = ();
18+
19+
fn next(&mut self) -> Option<Self::Item> {
20+
todo!()
21+
}
22+
}
23+
24+
EOF
25+
26+
rustdoc --edition=2021 out.rs
27+

ices/100183.rs

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
struct Struct {
2+
y: (typeof("hey"),),
3+
}
4+
5+
pub fn main() {}

ices/100187.sh

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#!/bin/bash
2+
3+
rustc "-Zcrate-attr=feature(with_negative_coherence)" - <<'EOF'
4+
5+
#![feature(negative_impls)]
6+
7+
// FIXME: this should compile
8+
9+
trait MyPredicate<'a> {}
10+
impl<'a, T> !MyPredicate<'a> for &T where T: 'a {}
11+
trait MyTrait<'a> {}
12+
impl<'a, T: MyPredicate<'a>> MyTrait<'a> for T {}
13+
impl<'a, T> MyTrait<'a> for &'a T {}
14+
//~^ ERROR: conflicting implementations of trait `MyTrait<'_>` for type `&_`
15+
16+
fn main() {}
17+
18+
EOF
19+

0 commit comments

Comments
 (0)