diff options
author | Andy Clement <andrew.clement@gmail.com> | 2012-10-01 15:09:15 -0700 |
---|---|---|
committer | Andy Clement <andrew.clement@gmail.com> | 2012-10-01 15:09:15 -0700 |
commit | 8a6608f4d5d1a2aa8aa49a0a38da66a54d53c917 (patch) | |
tree | eb9e96e988a63e1aa48896b279adae9bc41f9084 /tests/features171/pr386341/X.aj | |
parent | 9a3cc2bc5c824d252140fb3d1e2e27f2163e6d53 (diff) | |
download | aspectj-8a6608f4d5d1a2aa8aa49a0a38da66a54d53c917.tar.gz aspectj-8a6608f4d5d1a2aa8aa49a0a38da66a54d53c917.zip |
386341
Diffstat (limited to 'tests/features171/pr386341/X.aj')
-rw-r--r-- | tests/features171/pr386341/X.aj | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/features171/pr386341/X.aj b/tests/features171/pr386341/X.aj new file mode 100644 index 000000000..b96b73ad1 --- /dev/null +++ b/tests/features171/pr386341/X.aj @@ -0,0 +1,20 @@ +/******************************************************************************* + * Copyright (c) 2010 Contributors + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Andy Clement - Repro test case + * Abraham Nevado + *******************************************************************************/ + +aspect X { + after(): execution(* *.*()) { + System.out.println("It Worked-after"); + } + before(): execution(* *.*()) { + System.out.println("It Worked-before"); + } +} |