**note** **: <source>:2:5 inline (missed): _ZN3std2io5stdio6_print17ha3358eb27b9f8cbdE will not be inlined into _ZN7example4main17h6947cdf83b16969fE because its definition is unavailable**
Well, how do we get to std::io::stdio::_print (?) definition properly?
It will not make a measurable difference in the performance of the posted program. In general, inlining IO methods is not actually a good idea, as they will be used in multiple places and the cost of the IO is much higher than the cost of a call, so deduping the code is good.
Thus presumably you have some other motivation, and by elaborating that motivation we might be able to provide a more helpful answer.