Преглед на файлове

Removed some faulty comments from the testsuite

Taddeus Kroes преди 12 години
родител
ревизия
65edd7a998
променени са 1 файла, в които са добавени 0 реда и са изтрити 11 реда
  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);
-
 }