Files
typeof/test/odr.hpp
Arkadiy Vertleyb 92e77f51d6 minor test fixes
[SVN r31136]
2005-09-28 03:44:31 +00:00

12 lines
135 B
C++
Executable File

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