1export fn entry() void {
2 var a = &b;
3 a = a;
4 a();
5}
6inline fn b() void {}
7
8// error
9//
10// :4:5: error: unable to resolve comptime value
11// :4:5: note: function being called inline must be comptime-known