vimspector/tests/testdata/cpp/simple/simple.cpp
Ben Jackson 470c64603a Add ClearBreakpoints API
Add a test which actually triggers the mappings and fires up vimspector
with the cpptools debugger.
2019-04-28 10:51:15 +01:00

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;
}