summaryrefslogtreecommitdiff
path: root/tests/src/JIT/Regression/CLR-x86-JIT/V2.0-Beta2/b423721/c1.cs
blob: 0881919700a92fc989f62193cdaaa317c5da68ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System;
using System.Runtime.CompilerServices;

namespace Test
{

    public class C1<T>
    {

        public static string GetString()
        {
            return "foo";
        }
    }

    public class C1Helper
    {
        public static bool IsFoo(string val)
        {
            return ((object)"foo" == (object)val);
        }
    }

}