1// RUN: rm -rf %t && mkdir -p %t
2// RUN: clang-doc --format=mustache --output=%t --executor=standalone %s
3// RUN: FileCheck %s < %t/MyNamespace/index.html
4
5namespace MyNamespace {
6 class Foo;
7}
8
9// CHECK: <ul class="class-container">
10// CHECK-NEXT: <li id="{{[0-9A-F]*}}" style="max-height: 40px;">
11// CHECK-NEXT: <a href="Foo.html"><pre><code class="language-cpp code-clang-doc" >class Foo</code></pre></a>
12// CHECK-NEXT: </li>
13// CHECK-NEXT: </ul>
14

Provided by KDAB

Privacy Policy
Learn to use CMake with our Intro Training
Find out more

source code of clang-tools-extra/test/clang-doc/mustache-separate-namespace.cpp