Files
seer/tests/helloskip/helloskip.cpp
T
2025-02-15 13:35:00 -06:00

20 lines
247 B
C++

#include <cstdio>
#include <memory>
#include <vector>
using namespace std;
void foo(int i, int j) {
printf("%d %d\n", i, j);
}
int main() {
auto i = make_unique<int>(3);
vector<int> v{1,2};
foo(*i, v.back()); // step into
}