Procházet zdrojové kódy

Removed some faulty comments from the testsuite

Taddeus Kroes před 12 roky
rodič
revize
65edd7a998
1 změnil soubory, kde provedl 0 přidání a 11 odebrání
  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 */
  /* An argument shadowed by a variable */
 void bor(int b){
 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 baz_inner(){
 
 
         void b() {
         void b() {
@@ -101,13 +99,4 @@ void bor(int b){
     }
     }
 
 
     baz_inner();
     baz_inner();
-
-}
-
-
- /* This function is going to be shadowed by a variable in main */
-void bir(){
-
-    printInt(3333);
-
 }
 }