diff options
Diffstat (limited to 'clang/test/Modules/Inputs/codegen/use.cpp')
-rw-r--r-- | clang/test/Modules/Inputs/codegen/use.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/test/Modules/Inputs/codegen/use.cpp b/clang/test/Modules/Inputs/codegen/use.cpp index cd1a4a642d0..3e551881f63 100644 --- a/clang/test/Modules/Inputs/codegen/use.cpp +++ b/clang/test/Modules/Inputs/codegen/use.cpp @@ -6,3 +6,6 @@ void non_modular_use_of_implicit_dtor() { void use_of_instantiated_declaration_without_definition() { inst<int>(); } +void call_always_inline() { + always_inl(); +} |