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

Commit 39e92fe

Browse files
authored
Merge pull request #1694 from rust-lang/JohnTitor-patch-1
2 parents ec60bfb + 08dc6b4 commit 39e92fe

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

ices/103708.rs

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
#![feature(min_specialization)]
22

3-
trait Dance {}
3+
trait Dance {
4+
fn foo();
5+
}
46

5-
impl<'a, T> Dance for T {}
7+
impl<'a, T> Dance for T {
8+
fn foo() {}
9+
}
610

7-
impl Dance for bool {}
11+
impl Dance for bool {
12+
fn foo() {}
13+
}
814

915
fn main() {}

0 commit comments

Comments
 (0)