mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-27 10:02:01 +00:00
ce7eca0615
* Add ReadBufferFromFileBase::isRegularLocalFile() * DWARF input format * Review comments * Changed things around ENABLE_EMBEDDED_COMPILER build setting * Added 'ranges' column * no-msan no-ubsan
16 lines
343 B
C++
16 lines
343 B
C++
#include <thread>
|
|
#include <iostream>
|
|
#include <chrono>
|
|
using namespace std;
|
|
|
|
// Just an arbitrary program. We don't run it, just need its debug symbols.
|
|
|
|
int main() {
|
|
thread t([]{
|
|
this_thread::sleep_for(chrono::seconds(1));
|
|
throw "hi";
|
|
});
|
|
this_thread::sleep_for(chrono::seconds(10));
|
|
cout<<"unreachable\n";
|
|
}
|