You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
333 B
16 lines
333 B
// 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; }
|
|
};
|
|
|