Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/gmcs/cs-parser.jay')
-rw-r--r--mcs/gmcs/cs-parser.jay4
1 files changed, 2 insertions, 2 deletions
diff --git a/mcs/gmcs/cs-parser.jay b/mcs/gmcs/cs-parser.jay
index 1e5297fda46..05c5aa97654 100644
--- a/mcs/gmcs/cs-parser.jay
+++ b/mcs/gmcs/cs-parser.jay
@@ -3164,10 +3164,10 @@ this_access
;
base_access
- : BASE DOT IDENTIFIER opt_type_argument_list
+ : BASE DOT IDENTIFIER
{
LocatedToken lt = (LocatedToken) $3;
- $$ = new BaseAccess (lt.Value, (TypeArguments) $4, lt.Location);
+ $$ = new BaseAccess (lt.Value, lt.Location);
}
| BASE OPEN_BRACKET expression_list CLOSE_BRACKET
{