Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
arg9.C
blob: 41af11486ebe811b404e944a5a40299256fe8783 [
file
] [
log
] [
blame
]
// PR c++/57771
// { dg-do compile }
template
<
int
N
>
struct
S
{};
S
<
static_cast
<int>
(
4
>>
2
)>
s1
;
S
<
reinterpret_cast
<int>
(
4
>>
2
)>
s2
;