Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-4208.rs
blob: 1691bec980b269aaf4a21c62cd222a995b57985f [
file
] [
log
] [
blame
] [
edit
]
//@ 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
()
{}