mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
12 lines
221 B
Rust
12 lines
221 B
Rust
//@ run-pass
|
|
#![allow(dead_code)]
|
|
//@ aux-build:issue-4208-cc.rs
|
|
|
|
//@ pretty-expanded FIXME #23616
|
|
|
|
extern crate numeric;
|
|
use numeric::{sin, Angle};
|
|
|
|
fn foo<T, A:Angle<T>>(theta: A) -> T { sin(&theta) }
|
|
|
|
pub fn main() {}
|