mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
13 lines
218 B
Rust
13 lines
218 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() {}
|