Files
codeql/csharp/ql/test/library-tests/csharp8/AlternateInterpolatedStrings.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

8 lines
110 B
C#

using System;
class AlternateInterpolatedStrings
{
string s1 = $@"C:{12}";
string s2 = @$"C:{12}";
}