mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
23 lines
620 B
Rust
23 lines
620 B
Rust
fn main() {}
|
|
|
|
impl std::ops::AddAssign for () {
|
|
//~^ ERROR only traits defined in the current crate can be implemented for arbitrary types
|
|
fn add_assign(&self, other: ()) -> () {
|
|
()
|
|
}
|
|
}
|
|
|
|
impl std::ops::AddAssign for [(); 1] {
|
|
//~^ ERROR only traits defined in the current crate can be implemented for arbitrary types
|
|
fn add_assign(&self, other: [(); 1]) -> [(); 1] {
|
|
[()]
|
|
}
|
|
}
|
|
|
|
impl std::ops::AddAssign for &[u8] {
|
|
//~^ ERROR only traits defined in the current crate can be implemented for arbitrary types
|
|
fn add_assign(&self, other: &[u8]) -> &[u8] {
|
|
self
|
|
}
|
|
}
|