Restore missing code example (#3862)

Follow on to eade6b9#diff-c5d292723e1e43121acb1f8360545e53
This commit is contained in:
Christopher Watford 2020-09-08 12:25:42 -04:00 committed by GitHub
parent cc11a3bb7a
commit 7cf8d52977
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -187,7 +187,7 @@ unsafe class Util {
delegate*<void> ptr1 = &Util.Log;
// Error: type "delegate*<void>" not compatible with "delegate*<int>";
delegate*<int> ptr2 = &Util.Log;
}
}
```