Files
typeof/test/odr.hpp
Arkadiy Vertleyb c357f29a5b added more tests
[SVN r31048]
2005-09-20 01:32:56 +00:00

11 lines
134 B
C++
Executable File

#include <boost/typeof/typeof.hpp>
struct foo
{
typedef BOOST_TYPEOF(1 + 2.5) type;
};
namespace
{
typedef foo::type type;
}