• Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
f(int)2 void f(int) { } // expected-note {{previous definition is here}}
f(const int)3 void f(const int) { } // expected-error {{redefinition of 'f'}}
4