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