Yes, A{} matches any value constructed with the A constructor, regardless of whether the type has been declared with record syntax or not.
The language report specifies
The expression F {}, where F is a data constructor, is legal whether or not F was declared with record syntax (provided F has no strict fields — see the fourth bullet above); it denotes F ⊥1 … ⊥n, where n is the arity of F.
The 'fourth bullet' mentioned in the parenthesis states that it is a static error to construct a value with record syntax which omits a strict field.
And in the section on pattern matching, one of the grammar rules for patterns is
apat -> qcon { fpat1 , … , fpatk } (labeled pattern, k ≥ 0)
and the semantics are given in the subsection on formal semantics of pattern-matching (3.17.3) as
(o) case v of { K {} -> e ; _ -> e′ }
= case v of {
K _… _ -> e ; _ -> e′ }