mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-29 08:19:01 -04:00
11 lines
318 B
C
11 lines
318 B
C
// 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}}
|
|
}
|