mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-09 09:32:20 +00:00
d285f29317
Differential Revision: https://reviews.llvm.org/D82631
7 lines
208 B
C++
7 lines
208 B
C++
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
|
|
// There should be no extra errors about missing 'typename' keywords.
|
|
void f() {
|
|
decltype(undef())::Type T; // expected-error {{use of undeclared identifier}}
|
|
}
|