1 // RUN: %clang_cc1 -Wdocumentation -fsyntax-only %s 2>&1 | FileCheck -allow-empty %s
2 
3 /*!
4 @class Foo
5 */
6 typedef class { } Foo;
7 // CHECK-NOT: warning:
8 
9 /*!
10 @struct Bar
11 */
12 typedef struct { } Bar;
13 // CHECK-NOT: warning:
14