This website requires JavaScript.
Explore
Help
Sign In
maxjhandsome
/
llvm-project
forked from
OSchip/llvm-project
Watch
1
Star
0
Fork
You've already forked llvm-project
0
Code
Issues
Pull Requests
Packages
Releases
Wiki
Activity
93b76e0c60
llvm-project
/
llvm
/
test
/
C++Frontend
/
2003-10-21-InnerClass.cpp.tr
13 lines
114 B
Plaintext
Raw
Normal View
History
Unescape
Escape
For PR1319: Remove && from the end of the lines to prevent tests from throwing run lines into the background. Also, clean up places where the same command is run multiple times by using a temporary file. llvm-svn: 36142
2007-04-17 01:36:08 +08:00
// RUN: %llvmgcc -xc++ -S -o - %s | grep {struct.X::Y}
New testcase, fixed in the C++ frontend llvm-svn: 9353
2003-10-22 05:33:18 +08:00
struct X {
struct Y {
Y();
};
};
X::Y::Y() {
}