
Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
10 lines
189 B
Rust
10 lines
189 B
Rust
//@ check-pass
|
|
// Tests correct implementation of traits with super-builtin-kinds
|
|
// using a bounded type parameter.
|
|
|
|
|
|
trait Foo : Send { }
|
|
|
|
impl <T: Send> Foo for T { }
|
|
|
|
pub fn main() { }
|