12 lines
186 B
C++
12 lines
186 B
C++
#include "iue-other/library.hpp"
|
|
|
|
#include <cassert> // assert
|
|
|
|
int main() {
|
|
|
|
auto w = iue::other::Widget();
|
|
assert(w.calc() == 5);
|
|
assert(iue::other::calc(w) == 5);
|
|
|
|
return 0;
|
|
} |