Add a third AOT location, alongside ~/.mono/aot-cache and the assembly dir
[mono.git] / mcs / errors / cs0136-18.cs
1 // CS0136: A local variable named `arg' cannot be declared in this scope because it would give a different meaning to `arg', which is already used in a `parent or current' scope to denote something else
2 // Line: 11
3
4 using System;
5
6 class A (Func<int, int> barg)
7 {
8 }
9
10 class B (int arg) 
11         : A ((arg) => 1)
12 {
13 }