a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
17 lines
262 B
C#
17 lines
262 B
C#
// CS0177: The out parameter `output' must be assigned to before control leaves the current method
|
|
// Line: 8
|
|
|
|
class Test
|
|
{
|
|
static bool TryAction<T> (out T output)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
static void Main ()
|
|
{
|
|
Test value;
|
|
TryAction<Test> (out value);
|
|
}
|
|
}
|