• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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;
test_ptr()9 void test_ptr() { (void) ptr; } // forced use
10 
11 // CHECK: type { i8*, {{i..}} }
12