mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-10 18:11:19 +00:00
dadefde294
Fixes PR20110, where Clang hits an assertion failure when it expects that the sub-expression of a bit cast to pointer to also be a pointer, but gets a value instead. Differential Revision: http://reviews.llvm.org/D4280 llvm-svn: 212160
16 lines
333 B
C++
16 lines
333 B
C++
// 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; }
|
|
};
|
|
|