6992685b86
Former-commit-id: 0a113cb3a6feb7873f632839b1307cc6033cd595
25 lines
275 B
C#
25 lines
275 B
C#
using System;
|
|
|
|
class CloningTests
|
|
{
|
|
static Action a;
|
|
|
|
static void Do (Action cb)
|
|
{
|
|
cb ();
|
|
}
|
|
|
|
static void SetupBAD ()
|
|
{
|
|
int number = 0;
|
|
Do(() => {
|
|
a = () => Console.WriteLine ($"Number: {++number}");
|
|
});
|
|
}
|
|
|
|
static void Main ()
|
|
{
|
|
SetupBAD ();
|
|
a ();
|
|
}
|
|
} |