summaryrefslogtreecommitdiff
path: root/tests/bugs/parser-infinite-loop.slang
blob: 70abc92602c4bdaa5ebe495dbf14c7d0eba855ad (plain)
1
2
3
4
5
6
7
8
9
10
11
//DIAGNOSTIC_TEST:SIMPLE:

struct test
{
    float3 field;
}
void f()
{
    test x; x
    vector<int,2> v;
}