summaryrefslogtreecommitdiffstats
path: root/tests/language-server/invalid-const-suffix.slang
blob: e2365a3d1df54eaa3ec6f5ccf6c4d88478d24447 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//TEST:LANG_SERVER:

struct MyType {};

void m()
{
//HOVER:8,9
    MyType b;
    int t = 2tdf;
    float c = 3.0ug;
    reinterpret<MyType, MyType>(b);
}