Files
codeql/csharp/ql/test/library-tests/csharp8/UnmanagedGenericStructs.cs
Calum Grant 573646fe6a C#: Various C#8 features:
- Async streams (test only)
 - Unmanaged generic structs (extractor support)
 - Alternate interpolated strings (test only)
 - static local function (test only)
2019-05-29 08:12:11 +01:00

9 lines
93 B
C#

using System;
struct S<T, U> where T: unmanaged
{
int id;
T value1;
U value2;
}