mirror of
https://github.com/autc04/Retro68.git
synced 2025-02-18 02:30:48 +00:00
18 lines
172 B
C
18 lines
172 B
C
/* { dg-do run } */
|
|
/* { dg-shouldfail "" { *-*-* } { "*" } { "" } } */
|
|
|
|
#include <stdlib.h>
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
|
|
#pragma acc parallel
|
|
{
|
|
abort ();
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|