1// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
2
3struct A;
4typedef int A::*param_t;
5struct {
6  const char *name;
7  param_t par;
8} *ptr;
9void test_ptr() { (void) ptr; } // forced use
10
11// CHECK: type { i8*, {{i..}} }
12