Index: src/ResolvExpr/ConversionCost.cc
===================================================================
--- src/ResolvExpr/ConversionCost.cc	(revision 16907789400504da4a690ba2030d00525e23c030)
+++ src/ResolvExpr/ConversionCost.cc	(revision 264e69123587f0b13a2568bfb5159dd8fbdabf6b)
@@ -10,6 +10,6 @@
 // Created On       : Sun May 17 07:06:19 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Fri Apr 26 16:33:04 2019
-// Update Count     : 24
+// Last Modified On : Mon May  6 14:18:22 2019
+// Update Count     : 25
 //
 
@@ -249,4 +249,5 @@
 		/*_FLDXC*/ {  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,   0, },
 	}; // costMatrix
+	static const int maxIntCost = 15;
 	// GENERATED END
 	static_assert(
@@ -461,5 +462,6 @@
 			} // if
 		} else if ( dynamic_cast< PointerType* >( dest ) ) {
-			cost = Cost::safe;
+			cost = Cost::zero;
+			cost.incSafe( maxIntCost + 2 ); // +1 for zero_t -> int, +1 for disambiguation
 		} // if
 	}
