view clang/test/Preprocessor/empty_va_arg.cpp @ 266:00f31e85ec16 default tip

Added tag current for changeset 31d058e83c98
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sat, 14 Oct 2023 10:13:55 +0900
parents c4bab56944e8
children
line wrap: on
line source

// RUN: %clang_cc1 -Eonly -std=c++17 -pedantic -verify %s
// RUN: %clang_cc1 -Eonly -std=c17 -pedantic -verify -x c %s
// RUN: %clang_cc1 -Eonly -std=c++20 -pedantic -Wpre-c++20-compat -verify=compat %s

#define FOO(x, ...) // expected-note {{macro 'FOO' defined here}} \
                    // compat-note {{macro 'FOO' defined here}}

int main() {
  FOO(42) // expected-warning {{must specify at least one argument for '...' parameter of variadic macro}} \
          // compat-warning {{passing no argument for the '...' parameter of a variadic macro is incompatible with C++ standards before C++20}}
}