| 189 | struct iface2 |
| 190 | { |
| 191 | exec::function<int(iface2 const *) noexcept> get_i_from_base() const noexcept |
| 192 | { |
| 193 | return exec::function<int(iface2 const *) noexcept>(this, &iface2::get_i_virtually); |
| 194 | } |
| 195 | |
| 196 | virtual exec::function<int() noexcept> get_i_virtually() const noexcept = 0; |
| 197 | }; |