zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

test_comptime_call_extern_function.zig (128B) - Raw


      1 extern fn exit() noreturn;
      2 
      3 test "foo" {
      4     comptime {
      5         exit();
      6     }
      7 }
      8 
      9 // test_error=comptime call of extern function