Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.dg
/
imports
/
pr92216.d
blob: b8c71c03420c3b9b5dae12f44a33d908556ed45f [
file
] [
log
] [
blame
]
module
imports
.
pr92216
;
class
B
:
I
{
protected
override
void
getStruct
(){}
mixin A
!();
}
mixin
template
A
()
{
public
void
*
getS
()
{
return
null
;
}
}
public
interface
I
{
public
void
*
getS
();
protected
void
getStruct
();
}