1
2
3
4
5
6
7
8
9
10
11
12
void ThreadTest(int a)
{
    work

}
int main(void)
{
 
    std::thread t1(ThreadTest, 10);
 
    t1.join();
    return 0;
}
{cs

 <thread>랑 <iostream>은 인클루드 했고.. 흐미



이런 에러가 뜸니당...

왜 이럴까요?