3
0
mirror of https://github.com/triqs/dft_tools synced 2024-11-01 11:43:47 +01:00
dft_tools/test/triqs/arrays/bug3.cpp

22 lines
260 B
C++
Raw Normal View History

#include <triqs/arrays.hpp>
using namespace triqs::arrays;
template<typename T>
void f(array<T,1> const & M) { std::cout << M << std::endl ;}
void g(array<double,1> const & M) { f(M);}
int main() {
array<double,1> A = {1,2,3};
f(A);
g(2*A);
}