main8.c 306 B

12345678910111213141516
  1. // Copyright 2021 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. // Test preemption.
  5. #include <stdlib.h>
  6. #include "libgo8.h"
  7. int main() {
  8. GoFunction8();
  9. // That should have exited the program.
  10. abort();
  11. }