소스 검색

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);
-
 }