| 369 | public: |
| 370 | template< class... Context > |
| 371 | static |
| 372 | void |
| 373 | testValueCtors( Context const& ... ctx ) |
| 374 | { |
| 375 | // value_from supports every value constructor |
| 376 | |
| 377 | testValueCtor<value, Context...>( value(), ctx... ); |
| 378 | |
| 379 | char const* s = "5"; |
| 380 | testValueCtor<char const*, Context...>( s, ctx... ); |
| 381 | } |
| 382 | |
| 383 | template< class... Context > |
| 384 | static |