mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
14 lines
198 B
C++
14 lines
198 B
C++
#include "LibA/liba.h"
|
|
#include "LibB/libb.h"
|
|
#include "LibC/libc.h"
|
|
#include "include.h"
|
|
|
|
int main()
|
|
{
|
|
libc::container<libb::thing> x; // LibB, LibC
|
|
|
|
liba::fun(); // LibA
|
|
|
|
return include_num;
|
|
}
|