Open
Description
In current realization we use constructor from initializer list for tests
Point p = {0, 0};
And default constructor for *_klee.cpp files
Point p;
it's work in class that has constructor from all fields like
class point {
int x;
int y;
point(int x, int y) : x(x), y(y) {}
};
but some class hasn't this constructors, or hasn't any constructor
class point {
int x;
int y;
double dist;
point() = delete;
point(int x, int y) : x(x), y(y) {
dist = sqrt(x*x + y*y);
}
};
Metadata
Metadata
Assignees
Type
Projects
Status
Milestone
Relationships
Development
No branches or pull requests
Activity