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

Commit

Permalink
Merge pull request #1694 from rust-lang/JohnTitor-patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnTitor authored Dec 24, 2023
2 parents ec60bfb + 08dc6b4 commit 39e92fe
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions ices/103708.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
#![feature(min_specialization)]

trait Dance {}
trait Dance {
fn foo();
}

impl<'a, T> Dance for T {}
impl<'a, T> Dance for T {
fn foo() {}
}

impl Dance for bool {}
impl Dance for bool {
fn foo() {}
}

fn main() {}

0 comments on commit 39e92fe

Please sign in to comment.