https://github.com/shader-slang/slang
Raw File
Tip revision: a61f089fbc4b944d058e6417d8a0d22d57ca5c92 authored by Yong He on 28 March 2023, 22:19:03 UTC
Add slangpy doc, fix cuda prelude. (#2748)
Tip revision: a61f089
generic-arg.slang
// generic-arg.slang

//DIAGNOSTIC_TEST:SIMPLE:

// Test disambiguation of expression and generic app.

namespace NS
{
    struct MyType<let u : int, let v : int>
    {
        int arr[u /(v+1-1)];
    }
}

StructuredBuffer<NS.MyType<1, 3>> buffer;
back to top