Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
c19ee3eb08ce1d77504d5fc27f7c44b94543221b
/
.
/
test
/
SemaTemplate
/
instantiate-declref-ice.cpp
blob: 21ee872027973f5a3732cf95c55d388d8c4e82cc [
file
] [
log
] [
blame
]
// RUN: clang-cc -fsyntax-only -verify %s
template
<
int
i
>
struct
x
{
static
const
int
j
=
i
;
x
<j>
*
y
;
};