[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs1717-2.cs
blob5c1aff8d86abfc758ec462f2551bbf90236d1d9c
1 // CS1717: Assignment made to same variable; did you mean to assign something else?
2 // Line: 9
3 // Compiler options: -warnaserror -warn:3
5 class A
6 {
7 void B ()
9 int l = 3;
10 l = l;