mirror of
https://github.com/github/codeql.git
synced 2026-04-03 14:18:17 +02:00
11 lines
164 B
C#
11 lines
164 B
C#
using System;
|
|
|
|
class ImplicitToStringTest
|
|
{
|
|
void InterpolatedStringImplicitToString()
|
|
{
|
|
object o = null;
|
|
string s = $"{o}"; // GOOD
|
|
}
|
|
}
|