aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenCXX/PR4827-cast.cpp
blob: 958798d77f60583b826ca7c66a18c1a12cb9a4d6 (plain) (blame)
1
2
3
4
5
// RUN: clang-cc -emit-llvm -o - %s
struct A;
struct B;
extern A *f();
void a() { (B *) f(); }