mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
- Async streams (test only) - Unmanaged generic structs (extractor support) - Alternate interpolated strings (test only) - static local function (test only)
9 lines
93 B
C#
9 lines
93 B
C#
using System;
|
|
|
|
struct S<T, U> where T: unmanaged
|
|
{
|
|
int id;
|
|
T value1;
|
|
U value2;
|
|
}
|