[corlib] Add a special method for XI so the linker does not always have to generate it.
[mono-project.git] / mcs / errors / cs1717.cs
blob6d27df355f9103ea4bfa774f760eb1c440516b30
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 public A (int a)
9 a = a;