summaryrefslogtreecommitdiff
path: root/tests/src/JIT/Regression/CLR-x86-JIT/V1.2-Beta1/b180381/constrained1.cs
blob: ad62bad3a90c0daf75e820be52b31bdbbe4711c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
//

using System;

public class Test
{
    public static void M<T>(T t)
    {
        System.Type type = t.GetType();
        Console.WriteLine(type);
    }

    public static int Main()
    {
        M("Hello"); // Works fine
        M(3); // CLR crashes
        return 100;
    }
}