Add missing return statements in testcase
This commit is contained in:
parent
9c1bd797b9
commit
300ade57e8
1 changed files with 2 additions and 2 deletions
|
|
@ -32,8 +32,8 @@
|
|||
};
|
||||
|
||||
struct prev {
|
||||
prev & operator++() { }
|
||||
prev operator++(int) { }
|
||||
prev & operator++() { return *this; }
|
||||
prev operator++(int) { return *this; }
|
||||
};
|
||||
|
||||
%}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue