1 2 3 4 5 6 7 8 9 10 11
// xfail-boot fn main() { fn foo(float n) -> float { ret n + 0.12345; } let float n = 0.1; let float m = foo(n); log m; }