freebsd_amp_hwpstate/test/SemaTemplate/dependent-expr.cpp

8 lines
125 B
C++

// RUN: %clang_cc1 -fsyntax-only -verify %s
// PR5908
template <typename Iterator>
void Test(Iterator it) {
*(it += 1);
}