deepsourcestatus / test-repository

Empty interpolated string CS-W1000
Bug risk
Critical
7 months ago7 months old
Missing arguments to the interpolated text
14        var name = "Joe";
15        // CS-W1000: Missing arguments to interpolation.
16        // https://deepsource.io/directory/analyzers/csharp/issues/CS-W1000
17        var intro = $"My name is name";18
19        var pi = 3.14;
20        // CS-W1003: Invalid comparison against `NaN`.