2
0
mirror of https://github.com/boostorg/phoenix.git synced 2026-02-18 14:22:09 +00:00

function/lazy_argument_tests.cpp Ammend tests.

This commit is contained in:
John Fletcher
2015-02-22 18:34:54 +00:00
parent cdf3702bda
commit c2d14aa75d

View File

@@ -46,8 +46,8 @@ T h(F f, T const& t)
int main()
{
BOOST_TEST(h(gg,1) ==2);
BOOST_TEST(h<GG,int>(gg,1) ==2);
BOOST_TEST( h(gg,1) == 2);
BOOST_TEST(( h<GG,int>(gg,1) == 2));
return boost::report_errors();
}