mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-29 07:08:14 +00:00
8 lines
149 B
Rust
8 lines
149 B
Rust
// https://github.com/rust-lang/rust/issues/5572
|
|
//@ check-pass
|
|
#![allow(dead_code)]
|
|
|
|
fn foo<T: ::std::cmp::PartialEq>(_t: T) { }
|
|
|
|
pub fn main() { }
|