llvm-project/clang/test/CXX/basic/basic.start/basic.start.main/p2a.cpp

9 lines
139 B
C++

// RUN: %clang_cc1 -fsyntax-only -verify %s
typedef int Int;
typedef char Char;
typedef Char* Carp;
Int main(Int argc, Carp argv[]) {
}