aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/only_clause_main.c
blob: 2cc6c8dd317ee62afebfef768b19060fda4a5934 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* this is an f90 function */
void testOnly(int *cIntPtr);

int main(int argc, char **argv)
{
   int myCInt;

   myCInt = -11;
   testOnly(&myCInt);
   
   return 0;
}/* end main() */