svn path=/trunk/mcs/; revision=42096
@@ -0,0 +1,12 @@
+// cs1717.cs: Assignment made to same variable; did you mean to assign something else?
+// Line: 9
+// Compiler options: -warnaserror -warn:3
+
+class A
+{
+ void B ()
+ {
+ int l = 3;
+ l = l;
+ }
+}
@@ -0,0 +1,13 @@
+ int i;
+ void C ()
+ i = i;
+ static int Value;
+ void D ()
+ A.Value = Value;
@@ -0,0 +1,11 @@
+ public A (int a)
+ a = a;
@@ -127,5 +127,9 @@ cs1677-2.cs
cs1677.cs
cs1708.cs
cs1715.cs
+cs1717.cs
+cs1717-2.cs
+cs1717-3.cs
+cs1717-4.cs
cs2007.cs
cs3003-5.cs