diff options
| author | Yong He <yonghe@outlook.com> | 2024-03-14 14:58:24 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-14 14:58:24 -0700 |
| commit | c7d7a965c14318c07bd5b8ec60b960c2e95dfebd (patch) | |
| tree | a8ba4c59576863fd6e3bc869f34fa3a431a818dc /tests/preprocessor/include-angle-bracket.slang | |
| parent | f5f0740be8102b4d719575d97b00dbd21b54ffbe (diff) | |
Support `#include` with angle brackets. (#3773)
Diffstat (limited to 'tests/preprocessor/include-angle-bracket.slang')
| -rw-r--r-- | tests/preprocessor/include-angle-bracket.slang | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/preprocessor/include-angle-bracket.slang b/tests/preprocessor/include-angle-bracket.slang new file mode 100644 index 000000000..4b89387d4 --- /dev/null +++ b/tests/preprocessor/include-angle-bracket.slang @@ -0,0 +1,8 @@ +//TEST:SIMPLE: +// #include support + +int foo() { return 0; } + +#include <include-a.slang.h> + +int baz() { return bar(); }
\ No newline at end of file |
