void foo() noexcept
{
}

int main()
{
	// 이런식으로 noexcept 함수인지 검사할 수 있다.
	bool b = noexcept ( foo() );
}

추가 정보