1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -fsyntax-only -verify %s 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel Sambuc // PR9137 f0(int x)4*f4a2713aSLionel Sambucvoid f0(int x) : {}; // expected-error{{expected function body after function declarator}} f1(int x)5*f4a2713aSLionel Sambucvoid f1(int x) try {}; // expected-error{{expected function body after function declarator}} 6