Extended member friend test, previous version did not catch all defects (with Borland compiler for example).

[SVN r22386]
This commit is contained in:
John Maddock
2004-02-25 12:36:15 +00:00
parent 2d0dc7405d
commit 11ef0cd208

View File

@ -57,7 +57,7 @@ int test()
{
foo<int> fi;
foo<double> fd(fi);
(void) &fd; // avoid "unused variable" warning
must_be_friend_proc(fd);
foobar<long> fb(fi);
(void) &fb; // avoid "unused variable" warning
return 0;