Parcourir la source

Removed some faulty comments from the testsuite

Taddeus Kroes il y a 12 ans
Parent
commit
65edd7a998
1 fichiers modifiés avec 0 ajouts et 11 suppressions
  1. 0 11
      test/nested_funs/functional/scopes.cvc

+ 0 - 11
test/nested_funs/functional/scopes.cvc

@@ -90,8 +90,6 @@ void baz(int b){
 
  /* An argument shadowed by a variable */
 void bor(int b){
-
-    // The function b cannot be defined in the same scope hence it is in an inner function
     void baz_inner(){
 
         void b() {
@@ -101,13 +99,4 @@ void bor(int b){
     }
 
     baz_inner();
-
-}
-
-
- /* This function is going to be shadowed by a variable in main */
-void bir(){
-
-    printInt(3333);
-
 }