diff options
Diffstat (limited to 'clang/test/Modules/Inputs/cxx-templates-common.h')
-rw-r--r-- | clang/test/Modules/Inputs/cxx-templates-common.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Modules/Inputs/cxx-templates-common.h b/clang/test/Modules/Inputs/cxx-templates-common.h index 986c52b362c..682ef939cec 100644 --- a/clang/test/Modules/Inputs/cxx-templates-common.h +++ b/clang/test/Modules/Inputs/cxx-templates-common.h @@ -26,8 +26,8 @@ template<typename T> struct TemplateInstantiationVisibility { typedef int type; template<typename T> struct Outer { template<typename U> struct Inner { - void f(); - void g(); + static constexpr int f(); + static constexpr int g(); }; }; |