ROOT  6.07/01
Reference Guide
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
implicit_type_conversion_failures.cpp
Go to the documentation of this file.
1 #include <Vc/vector.h>
2 
3 #if !defined(TYPE_A) || !defined(TEST_OP) || !defined(TYPE_B)
4 #error "Need to define TYPE_A, TEST_OP, and TYPE_B"
5 #endif
6 
7 using namespace Vc;
8 
9 int main()
10 {
11  TYPE_A() TEST_OP TYPE_B();
12  return 0;
13 }