mirror of
https://github.com/boostorg/typeof.git
synced 2026-01-26 08:32:18 +01:00
21 lines
485 B
C++
21 lines
485 B
C++
// Copyright (C) 2004 Arkadiy Vertleyb
|
|
// Use, modification and distribution is subject to the Boost Software
|
|
// License, Version 1.0. (http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
#include <iostream>
|
|
#include "odr.hpp"
|
|
|
|
using namespace std;
|
|
|
|
void odr_test2()
|
|
{
|
|
#if! BOOST_WORKAROUND(BOOST_MSVC,==1300)
|
|
char i = 5;
|
|
double d = 3.14;
|
|
cout << sum(d, i) << endl;
|
|
cout << sum(i, d) << endl;
|
|
cout << make_sum(d, i)() << endl;
|
|
cout << make_sum(i, d)() << endl;
|
|
#endif
|
|
}
|