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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
//@ proc-macro: repeat.rs
#![allow(unused)]
// This tests the allocating algo branch of the
// inherent impls overlap checker.
// This branch was added by PR:
// https://github.com/rust-lang/rust/pull/78317
// In this test, we repeat many impl blocks
// to trigger the allocating branch.
// Simple overlap
extern crate repeat;
struct Foo {}
repeat::repeat_with_idents!(impl Foo { fn IDENT() {} });
impl Foo { fn hello() {} } //~ERROR duplicate definitions with name `hello`
impl Foo { fn hello() {} }
// Transitive overlap
struct Foo2 {}
repeat::repeat_with_idents!(impl Foo2 { fn IDENT() {} });
impl Foo2 {
fn bar() {}
fn hello2() {} //~ERROR duplicate definitions with name `hello2`
}
impl Foo2 {
fn baz() {}
fn hello2() {}
}
// Slightly stronger transitive overlap
struct Foo3 {}
repeat::repeat_with_idents!(impl Foo3 { fn IDENT() {} });
impl Foo3 {
fn bar() {} //~ERROR duplicate definitions with name `bar`
fn hello3() {} //~ERROR duplicate definitions with name `hello3`
}
impl Foo3 {
fn bar() {}
fn hello3() {}
}
// Generic overlap
struct Bar<T>(T);
struct A;
struct B;
repeat::repeat_with_idents!(impl Bar<A> { fn IDENT() {} });
impl Bar<A> { fn foo() {} fn bar2() {} }
impl Bar<B> {
fn foo() {}
fn bar2() {} //~ERROR duplicate definitions with name `bar2`
}
impl Bar<B> { fn bar2() {} }
fn main() {}
|