Spot the bug in the Name setter

from Properties
C# 14 / .NET 10 beginner 4 min 1 issue to find

Find the property implementation bug.

csharp
public sealed class Customer
{
    private string _name = string.Empty;

    public string Name
    {
        get => _name;
        set => Name = value.Trim();
    }
}
Open in playground
Report an error