mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 16:50:57 +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;
|
||
|
}
|
||
|
|