blob: 66af212267d161b1e38e722c8317ca114e0c13f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
// Test that you cannot define items with the same name in overlapping inherent
// impl blocks.
#![allow(unused)]
struct Foo;
impl Foo {
fn id() {} //~ ERROR duplicate definitions
}
impl Foo {
fn id() {}
}
struct Bar<T>(T);
impl<T> Bar<T> {
fn bar(&self) {} //~ ERROR duplicate definitions
}
impl Bar<u32> {
fn bar(&self) {}
}
struct Baz<T>(T);
impl<T: Copy> Baz<T> {
fn baz(&self) {} //~ ERROR duplicate definitions
}
impl<T> Baz<Vec<T>> {
fn baz(&self) {}
}
fn main() {}
|