Skip to content

Commit

Permalink
[semi-auto-props]: Add PROTOTYPE comments for test cases (#61038)
Browse files Browse the repository at this point in the history
  • Loading branch information
Youssef1313 authored May 2, 2022
1 parent 084012a commit 1125db2
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@ namespace Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests.Semantics

// PROTOTYPE(semi-auto-props): Add ENC tests.

// PROTOTYPE(semi-auto-props): Add a test where a virtual `get; set;` auto property is overridden by a sealed `get => 0;`.
// A synthesized sealed accessor is expected to be produced.

// PROTOTYPE(semi-auto-props): Add a test where a virtual property is `public virtual int P6 { get => 0; set { } }`, and
// it's overridden by `public override int P6 { get => field; }`
// The assignment of the property in constructor should use the base setter.
public class PropertyFieldKeywordTests : CompilingTestBase
{
/// <summary>
Expand Down

0 comments on commit 1125db2

Please sign in to comment.