blob: f88541da33b776c9774d76003080db0d8ded6a1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
//TEST_IGNORE_FILE:
// export-library-generics.slang
module "export-library-generics";
public cbuffer Constants {
public float x;
public float y;
}
interface MyInterface
{
int myMethod(int a);
}
struct MyType : MyInterface
{
int myMethod(int a)
{
return a * 3;
}
}
int genericFunc<T: MyInterface>(T arg)
{
return arg.myMethod(3);
}
public int normalFuncUsesGeneric(int a)
{
MyType obj;
return genericFunc(obj);
}
public int normalFunc(int a)
{
return a - 2;
}
|