2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0136-10.cs
bloba5dd959f38565156dab00ce316178be7ad6c6fff
1 // CS0136: A local variable named `t' cannot be declared in this scope because it would give a different meaning to `t', which is already used in a `parent or current' scope to denote something else
2 // Line: 14
3 using System;
5 public delegate void Hello (Test test);
7 public class Test
9 public void Whatever ()
10 { }
12 static void RunIt (Test t)
14 Hello hello = delegate (Test t) {
15 t.Whatever ();
17 hello (t);
20 static void Main ()
22 Test t = new Test ();
23 RunIt (t);