p
Size: a a a
p
DS
DS
p
DS
Т8
public delegate int DelegateType () throws ErrorType1, ErrorType2;
public int g(DelegateType f) throws ErrorType1, ErrorType2
{
return f();
}
EG
public delegate int DelegateType () throws ErrorType1, ErrorType2;
public int g(DelegateType f) throws ErrorType1, ErrorType2
{
return f();
}
Т8
EG
Т8
Т8
EG
fn g<T>(f: impl FnOnce() -> T) -> T {
f()
}
EG
Т8
EG
EG
EG
A
OA
Т8