Add a test which actually triggers the mappings and fires up vimspector with the cpptools debugger.
18 lines
212 B
C++
18 lines
212 B
C++
#include <iostream>
|
|
|
|
namespace
|
|
{
|
|
void foo( int bar )
|
|
{
|
|
int unused;
|
|
|
|
printf( "%d\n", bar );
|
|
}
|
|
}
|
|
|
|
int main( int argc, char ** )
|
|
{
|
|
printf( "this is a test %d\n", argc );
|
|
foo( argc );
|
|
return 0;
|
|
}
|