Resolves GH-156809 Modifies decl parser to allow C++11 style [[attributes]] on the first argument in constructors in all C++ standards. They are already allowed on later arguments. --------- Co-authored-by: Shafik Yaghmour <shafik.yaghmour@intel.com>
7 lines
137 B
C++
7 lines
137 B
C++
// RUN: %clang_cc1 -fsyntax-only -verify -std=c++03 %s
|
|
// expected-no-diagnostics
|
|
|
|
struct S {
|
|
S([[clang::lifetimebound]] int&) {}
|
|
};
|