Skip to content

Commit 82f09c4

Browse files
committed
Link issues
1 parent 9d025c3 commit 82f09c4

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

src/Compilers/Core/Portable/Binding/AbstractLookupSymbolsInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ public void GetUniqueSymbolOrArities(out IArityEnumerable? arities, out TSymbol?
188188
if (this.HasUniqueSymbol)
189189
{
190190
arities = null;
191-
#nullable disable // Can '_uniqueSymbolOrArities' be null?
191+
#nullable disable // Can '_uniqueSymbolOrArities' be null? https://github.com/dotnet/roslyn/issues/39166
192192
uniqueSymbol = (TSymbol)_uniqueSymbolOrArities;
193193
#nullable enable
194194
}

src/Compilers/Core/Portable/CodeGen/PrivateImplementationDetails.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ internal IOrderedEnumerable<KeyValuePair<int, InstrumentationPayloadRootField>>
201201
internal bool TryAddSynthesizedMethod(Cci.IMethodDefinition method)
202202
{
203203
Debug.Assert(!IsFrozen);
204-
#nullable disable // Can 'method.Name' be null?
204+
#nullable disable // Can 'method.Name' be null? https://github.com/dotnet/roslyn/issues/39166
205205
return _synthesizedMethods.TryAdd(method.Name, method);
206206
#nullable enable
207207
}

src/Compilers/Core/Portable/PEWriter/ManagedResource.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public void WriteData(BlobBuilder resourceWriter)
4242
{
4343
try
4444
{
45-
#nullable disable // Can '_streamProvider' be null?
45+
#nullable disable // Can '_streamProvider' be null? https://github.com/dotnet/roslyn/issues/39166
4646
using (Stream stream = _streamProvider())
4747
#nullable enable
4848
{

src/ExpressionEvaluator/CSharp/Source/ExpressionCompiler/Symbols/PlaceholderMethodSymbol.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@ bool Cci.ISignature.ReturnValueIsByRef
168168

169169
// This should be inherited from the base class implementation, but it does not currently work with Nullable
170170
// Reference Types.
171+
// https://github.com/dotnet/roslyn/issues/39167
171172
ImmutableArray<Cci.ICustomModifier> Cci.ISignature.RefCustomModifiers
172173
{
173174
get

0 commit comments

Comments
 (0)