Skip to content
This repository has been archived by the owner on May 23, 2024. It is now read-only.

ices/102154.sh: fixed with no errors #1457

Merged
merged 1 commit into from
Nov 14, 2022
Merged

Conversation

github-actions[bot]
Copy link
Contributor

Issue: rust-lang/rust#102154

#!/bin/bash

cat > out.rs <<'EOF'

trait A<Y, N> {
    type B;
}
type MaybeBox<T> = <T as A<T, Box<T>>>::B;
struct P {
    t: MaybeBox<P>
}
impl<Y, N> A<Y, N> for P {
    type B = N;
}
fn main() {
    let t: MaybeBox<P>;
}

EOF

rustdoc --edition=2021 out.rs
=== stdout ===
=== stderr ===
==============

=== stdout ===
=== stderr ===
==============
@Alexendoo Alexendoo merged commit f963e6a into master Nov 14, 2022
@Alexendoo Alexendoo deleted the autofix/ices/102154.sh branch November 14, 2022 18:48
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants