fork download
  1.  
  2. void (*pf)() throw(int); // OK
  3. typedef void (*tf)() throw(int); // Error: declared with an exception specification
  4.  
  5. int main()
  6. {}
Compilation error #stdin compilation error #stdout 0s 2892KB
stdin
Standard input is empty
compilation info
prog.cpp:3:31: error: ‘tf’ declared with an exception specification
stdout
Standard output is empty