From-SVN: r20674
This commit is contained in:
Jason Merrill 1998-06-23 08:04:29 -04:00
parent 48b24bcdfa
commit e70eea31dc
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ int main()
find_if( l.begin(), l.end(),
// This is a typo, it should be bind2nd, but an
// ICE is not a very helpful diagnostic!
binder2nd( equal_to<int>(), 2 ) ); // ERROR -
binder2nd( equal_to<int>(), 2 ) ); // ERROR -
assert( *(it) == 2 );
}