]> git.proxmox.com Git - rustc.git/blob - src/llvm/tools/clang/test/Sema/typedef-prototype.c
Imported Upstream version 0.6
[rustc.git] / src / llvm / tools / clang / test / Sema / typedef-prototype.c
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2
3 typedef int unary_int_func(int arg);
4 unary_int_func add_one;
5
6 int add_one(int arg) {
7 return arg + 1;
8 }