blob: 29dfbda3c029a5a1f58b663abc36ca308b748789 [file] [log] [blame]
#include "see.h"
int (^simpleBlock)(int) = ^(int a){
return a+1;
};
int foo() {
return simpleBlock(4);
}