Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
nontype19.C
blob: 1df78b3b3806b4d5469d00e0b387d9982221f1ad [
file
] [
log
] [
blame
]
// PR c++/42466
template
<
class
IntT
,
IntT
X
>
struct
A
{
A
();
template
<
IntT
X2
>
A
(
const
A
<
IntT
,
X2
>&
other
);
};
int
main
(
int
argc
,
char
**
argv
)
{
A
<
int
,
42
>
a
;
A
<
int
,
100
>
b
=
a
;
A
<
unsigned
,
42u
>
c
;
A
<
unsigned
,
100u
>
d
=
c
;
}