mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
21 lines
356 B
Rust
21 lines
356 B
Rust
|
use std::fmt::Debug;
|
||
|
|
||
|
macro_rules! i {
|
||
|
($($tr:tt)*) => { impl $($tr)* };
|
||
|
}
|
||
|
|
||
|
fn foo(x: i!(Debug), y: i!(Debug)) -> String {
|
||
|
let mut a = x;
|
||
|
a = y; //~ ERROR mismatched
|
||
|
format!("{:?}", a)
|
||
|
}
|
||
|
|
||
|
trait S<T> {}
|
||
|
|
||
|
fn much_universe<T: S<i!(Debug)>, U: IntoIterator<Item = i!(Iterator<Item = i!(Clone)>)>>(
|
||
|
_: i!(Debug + Clone),
|
||
|
) {
|
||
|
}
|
||
|
|
||
|
fn main() {}
|