Note that this magic constant DOES NOT load classes. And in fact can work on classes that do not exist.
This means it does not mess with auto-loading.
<?php
$className = \Foo\Bar::class;
var_dump($className);
var_dump(class_exists($className, false));
?>
Will output:
string(7) "Foo\Bar"
bool(false)