mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-04-18 06:10:37 +00:00
8 lines
146 B
C++
8 lines
146 B
C++
// RUN: %clang_cc1 -std=c++11 -verify %s
|
|
// expected-no-diagnostics
|
|
|
|
template<int &...Ns> int f() {
|
|
return sizeof...(Ns);
|
|
}
|
|
template int f<>();
|