std::experimental::nonesuch

From cppreference.com
Defined in header <experimental/type_traits>
struct nonesuch {

    nonesuch() = delete;
    ~nonesuch() = delete;
    nonesuch(nonesuch const&) = delete;
    void operator=(nonesuch const&) = delete;

};
(library fundamentals TS v2)

std::experimental::nonesuch is a class type used by std::experimental::detected_t to indicate detection failure.

[edit] Notes

nonesuch is not constructible, destructible, or copyable.