diff python/testc3.py @ 228:7f18ed9b6b7e

Removal of emptystatement class
author Windel Bouwman
date Sat, 13 Jul 2013 11:12:24 +0200
parents 82dfe6a32717
children 88a1e0baef65
line wrap: on
line diff
--- a/python/testc3.py	Fri Jul 12 17:42:39 2013 +0200
+++ b/python/testc3.py	Sat Jul 13 11:12:24 2013 +0200
@@ -256,12 +256,11 @@
             pa = 2; // type conflict
             pa = &a;
             pa = &2;
-            &a = 3; // no valid lvalue and incorrect types.
             &a = pa; // No valid lvalue
             **pa = 22; // Cannot deref int
          }
         """
-        self.expectErrors(snippet, [6, 9, 9, 10, 11])
+        self.expectErrors(snippet, [6, 9, 10])
 
     def testComplexType(self):
         snippet = """