2
0
mirror of https://github.com/boostorg/lambda.git synced 2026-01-22 17:22:48 +00:00

added test for break_const

[SVN r12278]
This commit is contained in:
Jaakko Järvi
2002-01-10 22:05:59 +00:00
parent fd0c89cdc5
commit 1ce4f8fb57

View File

@@ -317,6 +317,12 @@ void test_currying() {
}
void test_break_const()
{
break_const(_1 + _2)(1, 2);
}
int test_main(int, char *[]) {
test_nested_binds();
@@ -324,6 +330,7 @@ int test_main(int, char *[]) {
test_protect();
test_lambda_functors_as_arguments_to_lambda_functors();
test_currying();
test_break_const();
return 0;
}