• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // regression test for https://bugs.llvm.org/show_bug.cgi?id=46142
2 
3 // RUN: %clang_analyze_cc1 -analyzer-checker=webkit.NoUncountedMemberChecker -verify %s
4 // expected-no-diagnostics
5 
6 class ClassWithoutADefinition;
7 class Foo {
8     const ClassWithoutADefinition *foo;
9 };
10