Yearly archive page for future year

You need to add future posts to the query.

function add_future_posts($query) {
    $query->set('post_status', array('publish', 'future'));
}
add_action('pre_get_posts', 'add_future_posts', 10, 1);