Merge pull request #3586 from henricm/fix-win-uri-tests
[mono.git] / mcs / errors / cs0767.cs
index aeec8a2e823e00617c5a48be6c7ffaa229661de6..d6a59c19b8e8ff33bda20009bf422f72ca6f49d0 100644 (file)
@@ -3,18 +3,18 @@
 
 interface I<T, U>
 {
-    void Foo(ref U x);
-    void Foo(out T x);
+    void Foo(ref U t);
+    void Foo(out T u);
 }
 
 class A : I<int, int>
 {
-    void I<int, int>.Foo(ref int x)
+    void I<int, int>.Foo(ref int arg)
        {
        }
        
-    public virtual void Foo(out int x)
+    public virtual void Foo(out int arg)
        {
-               x = 8;
+               arg = 8;
        }
 }