Add one small test to expr

This commit is contained in:
Soonho Kong 2013-08-02 10:34:18 -07:00
parent faf3f20480
commit cda969187a

View file

@ -49,6 +49,7 @@ void tst1_pp() {
pp(fa(fa, fa)); std::cout << "\n";
pp(lambda("x", ty, var(0))); std::cout << "\n";
pp(pi("x", ty, var(0))); std::cout << "\n";
pp(pi("x", ty, lambda("y", ty, var(0)))); std::cout << "\n";
std::cerr << "=============== PP =====================\n";
}