The closing parenthesis was in the wrong place resulting in the default value not getting set. This adds a test case.
8 lines
57 B
C++
8 lines
57 B
C++
#include "missing.h"
|
|
|
|
int main()
|
|
{
|
|
int x;
|
|
x++;
|
|
}
|