536cd135cc
Former-commit-id: 5624ac747d633e885131e8349322922b6a59baaa
14 lines
180 B
C#
14 lines
180 B
C#
// CS0165: Use of unassigned local variable `s'
|
|
// Line: 12
|
|
|
|
class X
|
|
{
|
|
static string Foo (object arg)
|
|
{
|
|
if (arg is string s) {
|
|
|
|
}
|
|
|
|
return s;
|
|
}
|
|
} |