blob: abe9fe54efe38004bae3242f11e82fdb48c7607d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
typedef A {}
/* wow this works pretty good */
some_func(c A, d typeof c, e i64){c;}
some_func(c A, d typeof c, e typeof d){d;}
some_func(c A, d typeof c, e A){e;}
main(){
some_func(20 as f32, 20 as f32, 20 as f64);
}
|