2023-01-01 20:08:02 -06:00
|
|
|
fn main() {}
|
|
|
|
|
|
|
|
impl std::ops::AddAssign for () {
|
|
|
|
//~^ ERROR only traits defined in the current crate can be implemented for arbitrary types
|
2024-02-02 02:36:46 -06:00
|
|
|
fn add_assign(&self, other: ()) -> () { //~ ERROR incompatible type
|
2023-01-01 20:08:02 -06:00
|
|
|
()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl std::ops::AddAssign for [(); 1] {
|
|
|
|
//~^ ERROR only traits defined in the current crate can be implemented for arbitrary types
|
2024-02-02 02:36:46 -06:00
|
|
|
fn add_assign(&self, other: [(); 1]) -> [(); 1] { //~ ERROR incompatible type
|
2023-01-01 20:08:02 -06:00
|
|
|
[()]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl std::ops::AddAssign for &[u8] {
|
|
|
|
//~^ ERROR only traits defined in the current crate can be implemented for arbitrary types
|
2024-02-02 02:36:46 -06:00
|
|
|
fn add_assign(&self, other: &[u8]) -> &[u8] { //~ ERROR incompatible type
|
2023-01-01 20:08:02 -06:00
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|