master
1export fn foo() void {
2    var a: f16 = 2.2;
3    _ = &a;
4    // this will pull-in compiler-rt
5    const b = @trunc(a);
6    _ = b;
7}