6 lines
109 B
C++
6 lines
109 B
C++
#include <stdexcept>
|
|
|
|
extern "C" void throwCppException() {
|
|
throw std::runtime_error("C++ exception");
|
|
}
|