summaryrefslogtreecommitdiff
path: root/BCT/RegressionTests/RegressionTestInput/Class1.cs
diff options
context:
space:
mode:
authorGravatar Unknown <mbarnett@MBARNETT-LAP2.redmond.corp.microsoft.com>2011-04-27 20:42:05 -0700
committerGravatar Unknown <mbarnett@MBARNETT-LAP2.redmond.corp.microsoft.com>2011-04-27 20:42:05 -0700
commitb7ff2a37f38f5045ae636aa544bbe623dec46187 (patch)
tree9730f7495ae6c9b84744ad0589307efc3e9cc30d /BCT/RegressionTests/RegressionTestInput/Class1.cs
parente45880eaaae633b0d4627503d873433af9cb125b (diff)
Trying to get structs supported.
Diffstat (limited to 'BCT/RegressionTests/RegressionTestInput/Class1.cs')
-rw-r--r--BCT/RegressionTests/RegressionTestInput/Class1.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/BCT/RegressionTests/RegressionTestInput/Class1.cs b/BCT/RegressionTests/RegressionTestInput/Class1.cs
index f2918aa7..b5fa3582 100644
--- a/BCT/RegressionTests/RegressionTestInput/Class1.cs
+++ b/BCT/RegressionTests/RegressionTestInput/Class1.cs
@@ -130,4 +130,16 @@ namespace RegressionTestInput {
this.y = this.x;
}
}
+
+ public struct S {
+ int x;
+ bool b;
+ }
+
+ public class CreateStruct {
+ public S Create() {
+ return new S();
+ }
+ }
+
}