Sign in
fuchsia
/
third_party
/
swig
/
5cc90e6f5b321cae8e7290dc055d3e13543a2155
/
.
/
Examples
/
test-suite
/
destructor_reprotected.i
blob: 67328f3a0f1f41b8b6953ab5d4e90e65606b5fd9 [
file
] [
log
] [
blame
]
%
module
destructor_reprotected
%
inline
{
struct
A
{
A
()
{
}
virtual
~
A
()
{
}
};
struct
B
:
A
{
protected
:
B
()
{
}
~
B
()
{
}
};
struct
C
:
B
{
C
()
{
}
~
C
()
{
}
};
}