view clang/test/SemaCXX/PR20110.cpp @ 150:1d019706d866

LLVM10
author anatofuz
date Thu, 13 Feb 2020 15:10:13 +0900
parents
children
line wrap: on
line source

// 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; }
};