summaryrefslogtreecommitdiffstats
path: root/tests/preprocessor/include-multiple.slang
blob: 6dd1624bc423d601af194705b00f4c25aea87dce (plain)
1
2
3
4
5
6
7
8
9
10
//TEST:SIMPLE:
// #include support

int foo() { return 0; }

#include "include-a.slang.h"
#include "../preprocessor/include-a.slang.h"
#include "./include-a.slang.h"

int baz() { return bar(); }