forked from OSchip/llvm-project
Disable the modernize-use-trailing-return-type.cpp test in C++2a mode
It is performing a use-of-uninitialized-value, as detected by MSan. llvm-svn: 361163
This commit is contained in:
parent
0429fddc9d
commit
1e593f342f
|
@ -1,4 +1,6 @@
|
|||
// RUN: %check_clang_tidy -std=c++14-or-later %s modernize-use-trailing-return-type %t -- -- -fdeclspec -fexceptions
|
||||
// RUN: %check_clang_tidy -std=c++14,c++17 %s modernize-use-trailing-return-type %t -- -- -fdeclspec -fexceptions
|
||||
// FIXME: Fix the checker to work in C++2a mode, it is performing a
|
||||
// use-of-uninitialized-value.
|
||||
|
||||
namespace std {
|
||||
template <typename T>
|
||||
|
|
Loading…
Reference in New Issue