summaryrefslogtreecommitdiff
path: root/test/SemaCXX/PR20110.cpp
blob: e540a738b87b62f7cb1e8fb8a9f08b8b77676e48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// RUN: %clang_cc1 -fsyntax-only -verify %s
// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s
// expected-no-diagnostics

// FIXME: These templates should trigger errors in C++11 mode.

template <char const *p>
class A {
  char const *get_p() { return *p; }
};
template <int p>
class B {
  char const *get_p() { return p; }
};