Added testcase: bad 'operator=()'

This commit is contained in:
Daniel Marjamäki 2007-05-09 18:09:23 +00:00
parent 88543e8605
commit 36a9f22b62
2 changed files with 8 additions and 0 deletions

1
testclass12/err.msg Normal file
View File

@ -0,0 +1 @@
[testclass12\testclass12.cpp:5]: 'operator=' should return something

View File

@ -0,0 +1,7 @@
class Fred
{
public:
void operator=(const int &value);
};