1 // 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
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"
13 void ForcedTemplate() {
14 TemplateDep
<T
>(); // Shouldn't crash.
16 ""; // Triggers the warning checked for above.