1 2 3 4 5 6 7 8 9
fn f[T](T t) { log "dropping"; } fn main() { type r = rec(@int x, @int y); auto x = rec(x=@10, y=@12); f[r](x); }