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.
11 lines
318 B
11 lines
318 B
// RUN: %clang_cc1 -load %llvmshlibdir/SampleAnalyzerPlugin%pluginext -analyze -analyzer-checker='example.MainCallChecker' -verify %s
|
|
// REQUIRES: plugins, examples
|
|
|
|
// Test that the MainCallChecker example analyzer plugin loads and runs.
|
|
|
|
int main();
|
|
|
|
void caller() {
|
|
main(); // expected-warning {{call to main}}
|
|
}
|