mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
- Async streams (test only) - Unmanaged generic structs (extractor support) - Alternate interpolated strings (test only) - static local function (test only)
8 lines
110 B
C#
8 lines
110 B
C#
using System;
|
|
|
|
class AlternateInterpolatedStrings
|
|
{
|
|
string s1 = $@"C:{12}";
|
|
string s2 = @$"C:{12}";
|
|
}
|