a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
25 lines
280 B
C#
25 lines
280 B
C#
using System;
|
|
|
|
public class Foo
|
|
{
|
|
public static int Main ()
|
|
{
|
|
try {
|
|
lock (null) {
|
|
return 1;
|
|
}
|
|
} catch (ArgumentNullException) {
|
|
}
|
|
|
|
for (int i = 0; i < 3; ++i) {
|
|
object token = new object ();
|
|
|
|
lock (token)
|
|
{
|
|
token = null;
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
} |