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.
13 lines
351 B
13 lines
351 B
// RUN: %clang_analyze_cc1 -analyzer-checker=core -analyzer-config widen-loops=true -analyzer-max-loop 2 %s
|
|
// REQUIRES: asserts
|
|
// expected-no-diagnostics
|
|
//
|
|
// This test checks that the loop-widening code ignores static methods. If that is not the
|
|
// case, then an assertion will trigger.
|
|
|
|
class Test {
|
|
static void foo() {
|
|
for (;;) {}
|
|
}
|
|
};
|