mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 16:30:53 -05:00
10 lines
174 B
C++
10 lines
174 B
C++
// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
|
|
|
|
struct A;
|
|
typedef int A::*param_t;
|
|
struct {
|
|
const char *name;
|
|
param_t par;
|
|
} *ptr;
|
|
|
|
// CHECK: type { i8*, {{i..}} }
|