mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-17 04:26:37 +00:00

Summary: This case is particularly important for clangd, as it is triggered after inserting the snippet for variadic functions. Reviewers: kadircet, ilya-biryukov Subscribers: llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D64677 llvm-svn: 366200
3 lines
146 B
C++
3 lines
146 B
C++
// RUN: %clang_cc1 -fsyntax-only %s -verify
|
|
int x = m(s...); // expected-error{{pack expansion does not}} expected-error{{undeclared identifier}}
|