Brian Silverman | ffbc308 | 2018-08-04 23:35:15 -0700 | [diff] [blame^] | 1 | // Copyright 2006 Alexander Nasonov. |
2 | // | ||||
3 | // Distributed under the Boost Software License, Version 1.0. (See | ||||
4 | // accompanying file LICENSE_1_0.txt or copy at | ||||
5 | // http://www.boost.org/LICENSE_1_0.txt) | ||||
6 | |||||
7 | #include <boost/any.hpp> | ||||
8 | |||||
9 | int main() | ||||
10 | { | ||||
11 | boost::any const a; | ||||
12 | boost::any_cast<int&>(a); | ||||
13 | } | ||||
14 |