Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
formatting
  • Loading branch information
Julien Couvreur committed Jun 21, 2023
commit 2608051aac1f37fbcc1a7a81ae51fd0e44d84c7f
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@ public ExperimentalAttribute(int diagnosticId)
C.M();
""";

var comp = CreateCompilation(src, references: new[] { libComp.EmitToImageReference()});
var comp = CreateCompilation(src, references: new[] { libComp.EmitToImageReference() });
comp.VerifyDiagnostics();
}

Expand Down Expand Up @@ -588,7 +588,7 @@ public ExperimentalAttribute(string diagnosticId) { }
C.M();
""";

var comp = CreateCompilation(src, references: new[] { libComp.EmitToImageReference()});
var comp = CreateCompilation(src, references: new[] { libComp.EmitToImageReference() });
comp.VerifyDiagnostics(
// (1,1): warning DiagID: 'C' is for evaluation purposes only and is subject to change or removal in future updates.
// C.M();
Expand Down Expand Up @@ -629,7 +629,7 @@ public ExperimentalAttribute(string diagnosticId) { }
C.M();
""";

var comp = CreateCompilation(src, references: new[] { libComp.EmitToImageReference()});
var comp = CreateCompilation(src, references: new[] { libComp.EmitToImageReference() });
comp.VerifyDiagnostics(
// (1,1): warning DiagID: 'C' is for evaluation purposes only and is subject to change or removal in future updates.
// C.M();
Expand Down Expand Up @@ -670,7 +670,7 @@ public ExperimentalAttribute(string diagnosticId) { }
C.M();
""";

var comp = CreateCompilation(src, references: new[] { libComp.EmitToImageReference()});
var comp = CreateCompilation(src, references: new[] { libComp.EmitToImageReference() });
comp.VerifyDiagnostics(
// (1,1): warning DiagID: 'C' is for evaluation purposes only and is subject to change or removal in future updates.
// C.M();
Expand Down Expand Up @@ -813,7 +813,7 @@ public ExperimentalAttribute(string diagnosticId) { }
C.M();
""";

var comp = CreateCompilation(src, references: new[] { libComp.EmitToImageReference()});
var comp = CreateCompilation(src, references: new[] { libComp.EmitToImageReference() });
comp.VerifyDiagnostics(
// (1,1): warning DiagID: 'C' is for evaluation purposes only and is subject to change or removal in future updates.
// C.M();
Expand Down