You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
270 B
10 lines
270 B
7 months ago
|
// regression test for https://bugs.llvm.org/show_bug.cgi?id=46142
|
||
|
|
||
|
// RUN: %clang_analyze_cc1 -analyzer-checker=webkit.NoUncountedMemberChecker -verify %s
|
||
|
// expected-no-diagnostics
|
||
|
|
||
|
class ClassWithoutADefinition;
|
||
|
class Foo {
|
||
|
const ClassWithoutADefinition *foo;
|
||
|
};
|