view gcc/testsuite/g++.dg/gomp/pr84791.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents
children
line wrap: on
line source

// PR c++/84791
// { dg-do compile }

typedef int I;

template <int>
void
foo ()
{
  I i;
  #pragma omp parallel reduction (I::I: i)	// { dg-error "'I' is not a class, namespace, or enumeration" "" { target c++11 } }
    ;						// { dg-error "'I' is not a class or namespace" "" { target c++98_only } .-1 }
}

template void foo<0> ();