blob: c57ec307689793a775f526eba173eef5499d117f [file] [log] [blame]
Nico Weber28e0f242015-05-17 01:07:16 +00001// RUN: %clang_cc1 -fdelayed-template-parsing -load %llvmshlibdir/PrintFunctionNames%pluginext -plugin print-fns -plugin-arg-print-fns -parse-template -plugin-arg-print-fns ForcedTemplate %s 2>&1 | FileCheck %s
2// REQUIRES: plugins, examples
3
4template <typename T>
5void TemplateDep();
6
7// CHECK: top-level-decl: "ForcedTemplate"
8// The plugin should force parsing of this template, even though it's
9// not used and -fdelayed-template-parsing is specified.
10// CHECK: warning: expression result unused
11// CHECK: late-parsed-decl: "ForcedTemplate"
12template <typename T>
13void ForcedTemplate() {
14 TemplateDep<T>(); // Shouldn't crash.
15
16 ""; // Triggers the warning checked for above.
17}