mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
16 lines
181 B
C#
16 lines
181 B
C#
using System;
|
|
|
|
class C
|
|
{
|
|
public static implicit operator C(int i) { return null; }
|
|
|
|
int x1;
|
|
C x2;
|
|
|
|
// Verify conversions
|
|
void M()
|
|
{
|
|
x2 = x1;
|
|
}
|
|
}
|